diff options
| author | Robert Günzler <r@gnzler.io> | 2021-12-07 14:01:38 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-12-07 14:01:38 +0100 |
| commit | d1f18678f57574575d10647779364dfb1d7c99e8 (patch) | |
| tree | e5c0c574510d2c2b60f98b5d681cecfb16be2254 /.vim/lua/plugins.lua | |
| parent | 2a2f48cb89b5660aa7a962348483586d99fc4c27 (diff) | |
vim: fix TS enabled table
Diffstat (limited to '')
| -rw-r--r-- | .vim/lua/plugins.lua | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index c456fad..d7034e0 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -203,29 +203,28 @@ return require('packer').startup({function() }, config = function() local enabled = { - 'bash', - 'c', - 'c_sharp', - 'comment', - 'css', - 'dockerfile', - 'go', - 'gomod', - 'html', - 'javascript', - 'json', - 'jsonc', - 'ledger', - 'lua', - 'regex', - 'rust', - 'scss', - 'toml', - 'typescript', - 'vim', - 'yaml', - 'zig', - }, + 'bash', + 'c', + 'c_sharp', + 'comment', + 'css', + 'dockerfile', + 'go', + 'gomod', + 'html', + 'javascript', + 'json', + 'jsonc', + 'ledger', + 'lua', + 'regex', + 'rust', + 'scss', + 'toml', + 'typescript', + 'vim', + 'yaml', + 'zig', } require('nvim-treesitter.configs').setup { |