mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
nvim: treesitter enable more language by default
This commit is contained in:
parent
b980aa5192
commit
3f9663ea00
1 changed files with 13 additions and 1 deletions
|
|
@ -1,6 +1,18 @@
|
|||
require("nvim-treesitter.configs").setup {
|
||||
|
||||
ensure_installed = { "haskell", "lua" },
|
||||
ensure_installed = {
|
||||
-- funny language hehe
|
||||
"haskell",
|
||||
"rust",
|
||||
"nix",
|
||||
-- vim
|
||||
"lua",
|
||||
-- misc
|
||||
"html",
|
||||
"scss",
|
||||
"css",
|
||||
"json",
|
||||
},
|
||||
ignore_install = { "typst", "markdown" },
|
||||
sync_install = false,
|
||||
auto_install = true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue