1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00

update nvim config

This commit is contained in:
Henrik Hautakoski 2024-02-28 20:14:29 +01:00
parent 9523ecf1e3
commit feea9886f5
10 changed files with 113 additions and 56 deletions

View file

@ -8,7 +8,8 @@ return {
},
opts = {
-- A list of parser names
ensure_installed = {
ensure_installed = {
"bash",
"c",
"cpp",
"ninja",
@ -30,20 +31,18 @@ return {
"toml",
"xml",
"glsl",
"hlsl"
"hlsl",
"markdown"
},
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,
sync_install = true,
-- Automatically install missing parsers when entering buffer
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
auto_install = true,
-- Automatically install missing parsers when entering buffer
-- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally
auto_install = false,
---- If you need to change the installation directory of the parsers (see -> Advanced Setup)
-- parser_install_dir = "/some/path/to/store/parsers", -- Remember to run vim.opt.runtimepath:append("/some/path/to/store/parsers")!
highlight = {
highlight = {
enable = true,
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
@ -56,5 +55,8 @@ return {
indent = {
enable = true
}
}
},
config = function(_, opts)
require("nvim-treesitter.configs").setup(opts)
end,
}