diff options
| author | Robert Günzler <r@gnzler.io> | 2021-05-31 16:53:43 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-05-31 16:56:02 +0200 |
| commit | 84c501be462e03b55401ca962e03ff56e1bb1ae5 (patch) | |
| tree | fdaea32180ae17c7f684b44e6f94ab5ff5d46bc1 | |
| parent | a7906b1e3a38253a36cb483f1bac846860b915f5 (diff) | |
vim: use the official editorconfig plugin
| -rw-r--r-- | .vim/lua/plugins.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index d41024e..ead7e23 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -90,6 +90,9 @@ return require'packer'.startup(function() use {'junegunn/vim-easy-align'} + use {'editorconfig/editorconfig-vim', + config = "require('plugins._editorconfig')" + } -- use {'tpope/vim-sleuth'} -- detect indentation use {'nathanaelkane/vim-indent-guides', disable = true, @@ -97,7 +100,6 @@ return require'packer'.startup(function() } use {'tpope/vim-repeat'} -- extend '.' to plugins - use {'sgur/vim-editorconfig'} -- implements editorconfig in vimscript use {'michaeljsmith/vim-indent-object'} -- adds indentation text-objects use {'kshenoy/vim-signature', disable = true} -- toggle, display and navigate marks use {'norcalli/nvim-colorizer.lua', @@ -108,9 +110,7 @@ return require'packer'.startup(function() config = "require('plugins._git-messenger')" } - use {'TimUntersberger/neogit', - cmd = 'Neogit' - } + use {'TimUntersberger/neogit'} use {'rhysd/conflict-marker.vim', disable = true} -- use {'liuchengxu/vista.vim'} -- sidebar populated by lsp, ctags, etc. |