all repos

init.lua @ e8f3106

my nvim config
1 files changed, 3 insertions(+), 11 deletions(-)
refactor(treesitter): install parses that just cannot be installed automatically
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-02-05 23:37:27 +0200
Parent: 8f0a59f
M lua/plugins/treesitter.lua

@@ -12,17 +12,9 @@ end,

config = function() require("nvim-treesitter.configs").setup { auto_install = true, - ensure_installed = { - "lua", - "go", - "gomod", - "gowork", - "gosum", - "gitignore", - "gitcommit", - "query", - "sql", - }, + -- install explained because most of it uses as injections + -- and it doesnt install automatically + ensure_installed = { "sql", "markdown", "markdown_inline", "vim" }, indent = { enable = true, disable = { "python" } }, highlight = { enable = true, additional_vim_regex_highlighting = false }, autopairs = { enable = true },