nvim: treesitter: Add VHDL & drop a few others
This commit is contained in:
parent
e3aa8c1dee
commit
53e2c56631
1 changed files with 25 additions and 1 deletions
|
@ -1,4 +1,28 @@
|
|||
local ts_langs = { "bash", "c", "cpp", "diff", "fennel", "fish", "go", "haskell", "html", "java", "javascript", "jsdoc", "json", "lua", "markdown", "nix", "python", "query", "racket", "rust", "scheme", "toml", "tsx", "typescript", "verilog", "vim", "vimdoc" }
|
||||
local ts_langs = {
|
||||
"bash" ,
|
||||
"c" ,
|
||||
"cpp" ,
|
||||
"diff" ,
|
||||
"fish" ,
|
||||
"go" ,
|
||||
"haskell" ,
|
||||
"html" ,
|
||||
"javascript",
|
||||
"jsdoc" ,
|
||||
"json" ,
|
||||
"lua" ,
|
||||
"markdown" ,
|
||||
"python" ,
|
||||
"query" ,
|
||||
"rust" ,
|
||||
"toml" ,
|
||||
"tsx" ,
|
||||
"typescript",
|
||||
"verilog" ,
|
||||
"vhdl" ,
|
||||
"vim" ,
|
||||
"vimdoc"
|
||||
}
|
||||
|
||||
require'nvim-treesitter.install'.compilers = { "gcc" }
|
||||
require'nvim-treesitter.configs'.setup {
|
||||
|
|
Loading…
Reference in a new issue