diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-01-07 10:20:22 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-01-07 10:20:22 +0100 |
| commit | ed4d5cafd654d9f92c46776c98252e3c6653be13 (patch) | |
| tree | cbad5b204198abdd043d38baf453db16c1c53236 /nvim/lua | |
| parent | 89cb0fec41258481008f757a6055a46a874226bc (diff) | |
| download | dotfiles-ed4d5cafd654d9f92c46776c98252e3c6653be13.tar.gz dotfiles-ed4d5cafd654d9f92c46776c98252e3c6653be13.tar.bz2 dotfiles-ed4d5cafd654d9f92c46776c98252e3c6653be13.zip | |
neovim: Kommentare zum Setup hinzugefügt.
Diffstat (limited to 'nvim/lua')
| -rw-r--r-- | nvim/lua/config/options.lua | 12 | ||||
| -rw-r--r-- | nvim/lua/plugins/treesitter.lua | 4 |
2 files changed, 16 insertions, 0 deletions
diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua index 853a93c..afd6d11 100644 --- a/nvim/lua/config/options.lua +++ b/nvim/lua/config/options.lua | |||
| @@ -17,6 +17,18 @@ opt.showcmd = false | |||
| 17 | opt.spelllang = { "de", "en" } | 17 | opt.spelllang = { "de", "en" } |
| 18 | opt.spell = true | 18 | opt.spell = true |
| 19 | 19 | ||
| 20 | -- Die notwendigen Dateien müssen erst noch geladen werden! | ||
| 21 | -- TODO: Automatisierenss | ||
| 22 | --[[ | ||
| 23 | |||
| 24 | mkdir -p "$HOME/.local/share/nvim/site/spell" | ||
| 25 | |||
| 26 | cd "$HOME/.local/share/nvim/site/spell" | ||
| 27 | wget "https://ftp.nluug.nl/pub/vim/runtime/spell/de.utf-8.spl" | ||
| 28 | wget "https://ftp.nluug.nl/pub/vim/runtime/spell/de.utf-8.sug" | ||
| 29 | |||
| 30 | ]]-- | ||
| 31 | |||
| 20 | -- Optionen für ^n-Vervollständigung | 32 | -- Optionen für ^n-Vervollständigung |
| 21 | opt.complete = { ".", "w", "b", "u", "t", "i" } | 33 | opt.complete = { ".", "w", "b", "u", "t", "i" } |
| 22 | 34 | ||
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua index 8982a2c..338104a 100644 --- a/nvim/lua/plugins/treesitter.lua +++ b/nvim/lua/plugins/treesitter.lua | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | -- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/README.md | 1 | -- https://github.com/nvim-treesitter/nvim-treesitter/blob/main/README.md |
| 2 | 2 | ||
| 3 | -- Stelle sicher, dass die TreeSitter-CLI installiert ist: | ||
| 4 | -- MacOS: `brew install tree-sitter-cli` | ||
| 5 | -- FreeBSD: `doas pkg install tree-sitter-cli` | ||
| 6 | |||
| 3 | return { | 7 | return { |
| 4 | { | 8 | { |
| 5 | "nvim-treesitter/nvim-treesitter", | 9 | "nvim-treesitter/nvim-treesitter", |
