Skip to content

Commit

Permalink
feat: new parser
Browse files Browse the repository at this point in the history
  • Loading branch information
bgcicca committed Jan 29, 2025
1 parent e12cac0 commit 4c31235
Showing 1 changed file with 39 additions and 38 deletions.
77 changes: 39 additions & 38 deletions .config/nvim/lua/fastvim/configs/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,46 @@ return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup {
require("nvim-treesitter.configs").setup {

ensure_installed = {
"lua",
"vim",
"vimdoc",
"html",
"css",
"typescript",
"javascript",
"go",
"cpp",
"haskell",
"c",
"rust",
"scala",
"commonlisp",
"scheme",
"dart",
"ruby",
"astro",
"java",
"tsx",
"zig",
"xml",
"verilog",
"tmux",
"sql",
"json",
"json5",
"vue",
"norg",
},
ensure_installed = {
"lua",
"vim",
"vimdoc",
"html",
"css",
"typescript",
"javascript",
"go",
"cpp",
"haskell",
"c",
"rust",
"scala",
"commonlisp",
"scheme",
"dart",
"ruby",
"rust",
"astro",
"java",
"tsx",
"zig",
"xml",
"verilog",
"tmux",
"sql",
"json",
"json5",
"vue",
"norg",
},

highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
end,
}

0 comments on commit 4c31235

Please sign in to comment.