Back to Lazyvim

README DE

README-DE.md

15.15.05.1 KB
Original Source
<div align="center"> </div> <hr> <h4 align="center"> <a href="https://lazyvim.github.io/installation">Installieren</a> · <a href="https://lazyvim.github.io/configuration">Konfigurieren</a> · <a href="https://lazyvim.github.io">Dokumentation</a> </h4> <div align="center"><p> <a href="https://github.com/LazyVim/LazyVim/releases/latest">
</a>
<a href="https://github.com/LazyVim/LazyVim/pulse">
  
</a>
<a href="https://github.com/LazyVim/LazyVim/blob/main/LICENSE">
  
</a>
<a href="https://github.com/LazyVim/LazyVim/stargazers">
  
</a>
<a href="https://github.com/LazyVim/LazyVim/issues">
  
</a>
<a href="https://github.com/LazyVim/LazyVim">
  
</a>
<a href="https://twitter.com/intent/follow?screen_name=folke">
  
</a>
</div>

LazyVim ist ein Neovim-Setup aufgebaut auf 💤 lazy.nvim. Es erleichtert das Anpassen und Erweitern von Ihrer Konfiguration. Anstatt von vorne anzufangen oder eine vorgefertigte Distro zu verwenden, gibt LazyVim das beste aus beiden Welten - die Flexibilität Ihre Konfiguration zu verändern und einzustellen wie Sie es wollen und die Einfachheit von einem vorgefertigten Setup.

✨ Features

  • 🔥 Transformiere dein Neovim in eine komplette IDE
  • 💤 Passe deine Konfiguration einfach an und erweitere diese mit lazy.nvim
  • 🚀 Extrem schnell
  • 🧹 Logische Voreinstellungen für optionen, autocmds und keymaps
  • 📦 Kommt mit einem Haufen vorkonfigurierter, ready-to-use Plugins

⚡️ Vorraussetzungen

  • Neovim >= 0.11.2 (gebraucht um mit LuaJIT zu bauen)
  • Git >= 2.19.0 (um Teil-Klone zu unterstützen)
  • eine Nerd Font (optional)

🚀 Einstieg

Sie können eine Startvorlage für LazyVim hier finden

<details><summary>Versuchen Sie's mit Docker</summary>
sh
docker run -w /root -it --rm alpine:edge sh -uelic '
  apk add git lazygit fzf curl neovim ripgrep alpine-sdk --update
  git clone https://github.com/LazyVim/starter ~/.config/nvim
  cd ~/.config/nvim
  nvim
'
</details> <details><summary>Installieren von <a href="https://github.com/LazyVim/starter">LazyVim Starter</a></summary>
  • Neovim Files sichern:

    sh
    mv ~/.config/nvim ~/.config/nvim.bak
    mv ~/.local/share/nvim ~/.local/share/nvim.bak
    
  • Den Starter Klonen:

    sh
    git clone https://github.com/LazyVim/starter ~/.config/nvim
    
  • Den .git Folder löschen, um die Konfiguration zu einer eigenen distro hinzuzufügen:

    sh
    rm -rf ~/.config/nvim/.git
    
  • Neovim starten!

    sh
    nvim
    

    Refer to the comments in the files on how to customize LazyVim.

</details>

📂 Dateistruktur

Die Dateien unter config werden automatisch und zur richtigen Zeit geladen, sodass ein manuelles require nicht nötig ist. LazyVim bringt Konfigurationsdatein mit, die vor Ihren eigenen geladen werden - siehe hier Sie können eigene Plugins unter lua/plugins/ hinzufügen. Alle Dateien innerhalb dieses Ordners werden automatisch mit lazy.nvim geladen.

<pre> ~/.config/nvim ├── lua │ ├── config │ │ ├── autocmds.lua │ │ ├── keymaps.lua │ │ ├── lazy.lua │ │ └── options.lua │ └── plugins │ ├── spec1.lua │ ├── ** │ └── spec2.lua └── init.toml </pre>

⚙️ Konfiguration

Siehe Dokumentation.