diff options
| author | Robert Günzler <r@gnzler.io> | 2021-11-15 13:11:59 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-11-15 13:11:59 +0100 |
| commit | cff194061856e6ad7a099a5df8242de2ab6bd6c6 (patch) | |
| tree | 2c2de194b21bcb937a0e9faae9afd755be133145 /.vim | |
| parent | 109c7ab63e5981d0b6affb1138d4e6bc4ef6407e (diff) | |
vim: enable polyglot autoindent
Diffstat (limited to '.vim')
| -rw-r--r-- | .vim/init.lua | 2 | ||||
| -rw-r--r-- | .vim/lua/plugins.lua | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/.vim/init.lua b/.vim/init.lua index fdeb989..44abde4 100644 --- a/.vim/init.lua +++ b/.vim/init.lua @@ -21,7 +21,7 @@ opt.completeopt = {'menu','menuone','noinsert'} opt.concealcursor = '' opt.conceallevel = 2 opt.cursorline = true -opt.expandtab = true +opt.expandtab = false opt.exrc = true opt.fillchars = 'fold:─' opt.foldenable = true diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index 6f66842..07a431b 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -578,8 +578,6 @@ return require('packer').startup({function() -- polyglot: multi-language support with lazy loading {{{ -- NOTE: put language specific plugs before this to avoid conflicsts g.polyglot_disabled = { - 'autoindent', - 'bash', 'c', 'c_sharp', |