diff options
author | Minijackson <minijackson@riseup.net> | 2023-04-14 10:56:40 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2023-04-14 10:56:40 +0200 |
commit | 65f81e72ce6490b11d8de8942fcd4a2e774ef379 (patch) | |
tree | 00a73966b7a1cf91668278984a29db1314ebdf84 /dotfiles/vim | |
parent | 1e5d2e71a8033d59e3bf3336ccdd29255db4e17d (diff) | |
download | nixos-config-reborn-65f81e72ce6490b11d8de8942fcd4a2e774ef379.tar.gz nixos-config-reborn-65f81e72ce6490b11d8de8942fcd4a2e774ef379.zip |
vim: re-enable polyglot, with some features disabled
Polyglot sets a lot of useful variables
Diffstat (limited to 'dotfiles/vim')
-rw-r--r-- | dotfiles/vim/lua/myConfig.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dotfiles/vim/lua/myConfig.lua b/dotfiles/vim/lua/myConfig.lua index 58c6f6d..4411d8c 100644 --- a/dotfiles/vim/lua/myConfig.lua +++ b/dotfiles/vim/lua/myConfig.lua | |||
@@ -57,6 +57,15 @@ vim.opt.listchars = { | |||
57 | } | 57 | } |
58 | vim.wo.list = true | 58 | vim.wo.list = true |
59 | 59 | ||
60 | -- Polyglot | ||
61 | ----------- | ||
62 | |||
63 | vim.g.polyglot_disabled = { | ||
64 | "ftdetect", | ||
65 | "autoindent", | ||
66 | "sensible", | ||
67 | } | ||
68 | |||
60 | -- Leaders | 69 | -- Leaders |
61 | ---------- | 70 | ---------- |
62 | 71 | ||