Migrate nvim config to Lua

This commit is contained in:
2022-06-26 23:13:35 +01:00
parent 36f5c77916
commit 9b5c910e22
7 changed files with 206 additions and 119 deletions

View File

@ -0,0 +1,51 @@
require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"c",
"cmake",
"cpp",
"css",
"dockerfile",
"glsl",
"graphql",
"haskell",
"http",
"html",
"java",
"javascript",
"jsdoc",
"json",
"json5",
"latex",
"lua",
"markdown",
"ninja",
"nix",
"org",
"perl",
"php",
"pug",
"python",
"regex",
"rst",
"ruby",
"rust",
"scala",
"scss",
"toml",
"tsx",
"typescript",
"vim",
"yaml",
"zig"
},
ignore_install = {},
highlight = {
enable = true,
disable = {},
},
indent = {
enable = true,
}
})