neovim bumps

This commit is contained in:
Ben Kyd
2025-06-10 14:08:57 +01:00
parent cdbffbf1be
commit 6aa6efd1c9
5 changed files with 140 additions and 138 deletions

View File

@@ -1,8 +1,19 @@
require'nvim-treesitter.configs'.setup {
-- will install treesitter for all available languages
ensure_installed = 'all',
ignore_install = {'haskell'}, -- broken
highlight = {
enable = true
}
ensure_installed = {
"c",
"cpp",
"lua",
"python",
"javascript",
"typescript",
"html",
"css",
"bash",
"json",
"yaml",
"markdown",
},
highlight = {
enable = true
}
}