Skip to content

Commit

Permalink
chore: add explicit list of treesitter parsers to install
Browse files Browse the repository at this point in the history
  • Loading branch information
vicnett committed Nov 17, 2024
1 parent 299c44f commit cf06fda
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions vim/lua/plugins/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@ return {
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"dockerfile",
"git_config",
"git_rebase",
"gitattributes",
"gitcommit",
"gitignore",
"lua",
"markdown",
"markdown_inline",
"python",
"sql",
"tmux",
"toml",
"vim",
"vimdoc",
"yaml",
},
ignore_install = {
"csv",
"psv",
"tsv",
},
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
Expand Down

0 comments on commit cf06fda

Please sign in to comment.