diff --git a/lua/codecraft/plugin/treesitter.lua b/lua/codecraft/plugin/treesitter.lua index 1ef6a10c5b895ea824c3c79f063906c34eba0124..1895e219e736e2bdb8c9f16a89de36f70c96977a 100644 --- a/lua/codecraft/plugin/treesitter.lua +++ b/lua/codecraft/plugin/treesitter.lua @@ -2,7 +2,7 @@ -- See `:help nvim-treesitter` require('nvim-treesitter.configs').setup { -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help', 'vim', 'html' }, + ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'vim', 'html' }, highlight = { enable = true }, indent = { enable = true, disable = { 'python' } },