summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rw-r--r--.config/nvim/lua/plugins/treesitter.lua20
1 files changed, 17 insertions, 3 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua
index c454b48..c462ec8 100644
--- a/.config/nvim/lua/plugins/treesitter.lua
+++ b/.config/nvim/lua/plugins/treesitter.lua
@@ -9,8 +9,22 @@ return {
9 }, 9 },
10 config = function() 10 config = function()
11 require("nvim-treesitter.configs").setup({ 11 require("nvim-treesitter.configs").setup({
12 ensure_installed = { "bash", "bibtex", "c", "cpp", "css", "fish", "http", "latex", "lua", "python", "rust", "vim" }, 12 ensure_installed = {
13 ignore_install = { }, 13 "bash",
14 "bibtex",
15 "c",
16 "cpp",
17 "css",
18 "fish",
19 "http",
20 "latex",
21 "lua",
22 "python",
23 "rust",
24 "toml",
25 "vim",
26 },
27 ignore_install = {},
14 auto_install = true, 28 auto_install = true,
15 sync_install = false, 29 sync_install = false,
16 highlight = { 30 highlight = {
@@ -66,7 +80,7 @@ return {
66 }, 80 },
67 }, 81 },
68 }, 82 },
69 modules = { }, 83 modules = {},
70 }) 84 })
71 end, 85 end,
72 }, 86 },