add nix to treesitter config

This commit is contained in:
Maciej Lebiest 2023-06-17 21:14:20 +02:00 committed by GitHub
parent 4d63a6b96f
commit 1d046edf88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
return function()
require 'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all"
ensure_installed = { "vim", "markdown_inline", "html", "dockerfile", "cpp", "css", "markdown", "c", "gitcommit", "bash", "phpdoc", "comment", "python", "http", "php", "regex", "json5", "lua", "gitattributes", "gitignore", "json", "git_rebase", "javascript", "perl", "sql", "yaml" },
ensure_installed = { "vim", "markdown_inline", "html", "dockerfile", "cpp", "css", "markdown", "c", "gitcommit", "bash", "phpdoc", "comment", "python", "http", "php", "regex", "json5", "lua", "gitattributes", "gitignore", "json", "git_rebase", "javascript", "perl", "sql", "yaml", "nix" },
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = true,