all repos

init.lua @ 9c21b8d7eda68399923d907d4842e6cdb12fd4c1

my nvim config
1 files changed, 1 insertions(+), 1 deletions(-)
feat(treesitter): disable intent for nix files
Author: Smirnov Olexander ss2316544@gmail.com
Committed at: 2022-05-09 12:06:44 +0300
Parent: a34ae71
M lua/configs/treesitter.lua

@@ -1,6 +1,6 @@

require("nvim-treesitter.configs").setup { ensure_installed = { "lua", "go", "gomod", "python", "yaml", "comment" }, - indent = { enable = true, disable = { "python", "go", "yaml" } }, + indent = { enable = true, disable = { "python", "go", "yaml", "nix" } }, highlight = { enable = true, additional_vim_regex_highlighting = false }, context_commentstring = { enable = true, enable_autocmd = false }, autopairs = { enable = true },