diff options
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rw-r--r-- | .config/nvim/lua/plugins/treesitter.lua | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua deleted file mode 100644 index 0c2383c..0000000 --- a/.config/nvim/lua/plugins/treesitter.lua +++ /dev/null @@ -1,33 +0,0 @@ -return { - { - "nvim-treesitter/nvim-treesitter", - branch = 'master', - lazy = false, - build = ":TSUpdate", - config = function() - local config = require("nvim-treesitter.configs") - config.setup({ - ensure_installed = { - "bash", - "lua", - "javascript", - "c", - "cpp", - "json", - "go", - "markdown", - "meson", - "make", - "cmake", - "python", - "rust", - "yaml", - "toml", - "ron", - }, - highlight = { enable = true }, - indent = { enable = true }, - }) - end - } -} |