commit 0e8b34abe3dd85b4e61b9e3da298553375c2abc8
parent 75ddb8e6378312d29c2cae1a22897a60c29058e2
Author: mehdi-norouzi <mehdeenoroozi@gmail.com>
Date: Sun, 25 Jun 2023 21:10:04 +0330
nvim: treesitter: install comment parser
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nvim/.config/nvim/after/plugin/treesitter.lua b/nvim/.config/nvim/after/plugin/treesitter.lua
@@ -1,6 +1,6 @@
require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all"
- ensure_installed = { "help", "c", "lua", "rust", "markdown" },
+ ensure_installed = { "help", "c", "lua", "rust", "markdown", "comment" },
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,