mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-22 03:34:10 -05:00
Add css as a supported treesitter language
This commit is contained in:
parent
39072e898e
commit
e901fece0d
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ if (vim.g.enabletreesitter == 1) then
|
||||||
vim.opt.runtimepath:append(parser_dir)
|
vim.opt.runtimepath:append(parser_dir)
|
||||||
|
|
||||||
require("nvim-treesitter.configs").setup({
|
require("nvim-treesitter.configs").setup({
|
||||||
ensure_installed = { "bash", "c", "cpp", "git_config", "html", "java", "javascript", "json", "lua", "php", "python", "query", "rust", "toml", "typescript", "vim", "vue" },
|
ensure_installed = { "bash", "c", "cpp", "css", "git_config", "html", "java", "javascript", "json", "lua", "php", "python", "query", "rust", "toml", "typescript", "vim", "vue" },
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
auto_install = false,
|
auto_install = false,
|
||||||
parser_install_dir = parser_dir,
|
parser_install_dir = parser_dir,
|
||||||
|
|
Loading…
Reference in a new issue