Фикс Treesitter
This commit is contained in:
parent
0aeec22553
commit
6553a9bd81
4 changed files with 54 additions and 11 deletions
|
@ -1,5 +1,47 @@
|
|||
require('nvim-treesitter.configs').setup{
|
||||
ensure_installed = 'all',
|
||||
ignore_install = { 'phpdoc' },
|
||||
highlight = { enable = true }
|
||||
}
|
||||
require("nvim-treesitter.configs").setup({
|
||||
highlight = { enable = true },
|
||||
ensure_installed = {
|
||||
"c",
|
||||
"lua",
|
||||
"python",
|
||||
"bash",
|
||||
"go",
|
||||
"html",
|
||||
"css",
|
||||
"javascript",
|
||||
"typescript",
|
||||
"git_config",
|
||||
"git_rebase",
|
||||
"gitattributes",
|
||||
"gitcommit",
|
||||
"gitignore",
|
||||
"gomod",
|
||||
"gosum",
|
||||
"gotmpl",
|
||||
"gowork",
|
||||
"hjson",
|
||||
"ini",
|
||||
"json",
|
||||
"json5",
|
||||
"jsonnet",
|
||||
"latex",
|
||||
"make",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"nginx",
|
||||
"proto",
|
||||
"rust",
|
||||
"templ",
|
||||
"todotxt",
|
||||
"toml",
|
||||
"tsx",
|
||||
"typescript",
|
||||
"vim",
|
||||
"vimdoc",
|
||||
"xml",
|
||||
"yaml",
|
||||
"sql",
|
||||
"ssh_config",
|
||||
},
|
||||
ignore_install = { "gdhsader", "phpdoc" },
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue