1
0
Fork 0

Initial nvim config.

This commit is contained in:
Arthur Khachaturov 2023-11-28 23:54:18 +03:00
parent e915531d83
commit c26d67450b
19 changed files with 279 additions and 0 deletions

View file

@ -0,0 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "query", "python", "javascript", "html" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}