aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/config/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/config/options.lua')
-rw-r--r--nvim/lua/config/options.lua12
1 files changed, 12 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
17opt.spelllang = { "de", "en" } 17opt.spelllang = { "de", "en" }
18opt.spell = true 18opt.spell = true
19 19
20-- Die notwendigen Dateien müssen erst noch geladen werden!
21-- TODO: Automatisierenss
22--[[
23
24mkdir -p "$HOME/.local/share/nvim/site/spell"
25
26cd "$HOME/.local/share/nvim/site/spell"
27wget "https://ftp.nluug.nl/pub/vim/runtime/spell/de.utf-8.spl"
28wget "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
21opt.complete = { ".", "w", "b", "u", "t", "i" } 33opt.complete = { ".", "w", "b", "u", "t", "i" }
22 34