diff options
| author | Robert Günzler <r@gnzler.io> | 2022-08-02 22:02:56 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-08-02 22:15:23 +0200 |
| commit | c68efbd97d5db09bfcd9cc49fcba848d54216cd2 (patch) | |
| tree | fe66be3dd938d5108eb058b3ae3142f3f9f849a9 /.vim | |
| parent | 2afcdd118497ba99a63f4b89c08fea68b952c2eb (diff) | |
vim: drop polyglot for good
Diffstat (limited to '.vim')
| -rw-r--r-- | .vim/lua/plugins.lua | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index 887d19f..27ab248 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -942,18 +942,6 @@ require('packer').startup({function() -- use {'masukomi/vim-markdown-folding', ft = {'markdown'}} use {'gentoo/gentoo-syntax'} - -- polyglot: multi-language support with lazy loading {{{ - -- NOTE: put language specific plugs before this to avoid conflicsts - use {'sheerun/vim-polyglot', disable = true, - setup = function() - vim.g.polyglot_disabled = vim.tbl_extend('force', _G.treesitter_enabled, { - 'autoindent', - 'sensible', - 'ftdetect', - }) - vim.notify(vim.inspect(vim.g.polyglot_disabled)) - end} -- }}} - use {'NMAC427/guess-indent.nvim', disable = false, -- {{{ config = function() require('guess-indent').setup { |