Add dotfiles

This commit is contained in:
2024-02-28 01:37:11 +01:00
commit aa37de5f47
58 changed files with 3361 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = {
"BufReadPost",
"BufNewFile"
},
cmd = {
"TSInstall",
"TSBufEnable",
"TSBufDisable",
"TSModuleInfo",
"TSInstallSync"
},
config = function(_, opts)
require("nvim-treesitter.configs").setup({
ensure_installed = {
"cpp",
"c",
"lua",
"vim",
"vimdoc",
"query"
},
sync_install = false,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
disable = {
"latex"
}
}
})
end
}
}