diff options
author | Valentin Popov <valentin@popov.link> | 2023-03-30 22:19:42 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2023-03-30 22:19:42 +0300 |
commit | ce2d0be8d3a633f934f143d79780531dea00e1c5 (patch) | |
tree | 8bff01bc69f6b260cd4b8db2ebc85c9f38bb9c3a /lua | |
parent | a315cff2d93c880e32da9a3fb90ca03c28340c4d (diff) | |
download | nvim-config-ce2d0be8d3a633f934f143d79780531dea00e1c5.tar.xz nvim-config-ce2d0be8d3a633f934f143d79780531dea00e1c5.zip |
Обновление списка основных языков
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'lua')
-rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index bc85876..7a4f5f3 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -42,7 +42,7 @@ return require('packer').startup(function(use) 'nvim-treesitter/nvim-treesitter', config = function() require('nvim-treesitter.configs').setup { - ensure_installed = { 'javascript', 'lua', 'php', 'rust', 'typescript' }, + ensure_installed = { 'bash', 'css', 'dockerfile', 'go', 'html', 'javascript', 'lua', 'markdown', 'php', 'rust', 'scss', 'typescript', 'vue' }, sync_install = false, auto_install = true, highlight = { |