diff options
author | Yigit Sever | 2023-08-20 23:38:05 +0300 |
---|---|---|
committer | Yigit Sever | 2023-08-20 23:38:05 +0300 |
commit | 33fe27fd3dfbe21cf1ca9b4ab2b9c960e0ef9dd4 (patch) | |
tree | 029c93b57f88f36d4b8cf4a389a906faae535e79 /.config/nvim/lua/plugins/treesitter.lua | |
parent | a986d07da86e951180b5eea7dfd20d0da46e0cd8 (diff) | |
download | dotfiles-33fe27fd3dfbe21cf1ca9b4ab2b9c960e0ef9dd4.tar.gz dotfiles-33fe27fd3dfbe21cf1ca9b4ab2b9c960e0ef9dd4.tar.bz2 dotfiles-33fe27fd3dfbe21cf1ca9b4ab2b9c960e0ef9dd4.zip |
nvim: nvim-ufo, bunch of fixes
Diffstat (limited to '.config/nvim/lua/plugins/treesitter.lua')
-rw-r--r-- | .config/nvim/lua/plugins/treesitter.lua | 20 |
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 | }, |