neovim: move most of files to after/plugin dir

This commit is contained in:
2022-06-16 19:19:21 +03:00
parent b297ecf1b4
commit cac1f49413
16 changed files with 10 additions and 22 deletions

View File

@@ -0,0 +1,41 @@
require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"c",
"cmake",
"comment",
"cpp",
"css",
"dockerfile",
"go",
"gomod",
"graphql",
"html",
"javascript",
"jsdoc",
"json",
"jsonc",
"lua",
"make",
"markdown",
"prisma",
"python",
"rust",
"scss",
"svelte",
"toml",
"tsx",
"typescript",
"vim",
"yaml",
},
highlight = {
enable = true,
},
context_commentstring = {
enable = true,
},
autotag = {
enable = true,
},
})