summaryrefslogtreecommitdiff
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.lua27
1 files changed, 14 insertions, 13 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua
index ba45ada..e07c895 100644
--- a/.config/nvim/lua/plugins/treesitter.lua
+++ b/.config/nvim/lua/plugins/treesitter.lua
@@ -7,24 +7,25 @@ return {
require("nvim-treesitter.configs").setup({
auto_install = true,
ensure_installed = {
- "lua",
- "python",
- "rust",
"bash",
- "regex",
- "json",
- "toml",
- "yaml",
- "ini",
- "markdown",
- "html",
+ "clojure",
"css",
+ "html",
+ "ini",
"javascript",
- "typescript",
- "tsx",
+ "json",
+ "kotlin",
+ "lua",
+ "markdown",
+ "python",
+ "regex",
+ "rust",
"scss",
- "clojure",
"sql",
+ "toml",
+ "tsx",
+ "typescript",
+ "yaml",
},
highlight = { enable = true },
})