all repos

init.lua @ e801c72d3a8e5a6cde44e0aee6a5fc6c54ef373c

my nvim config

init.lua/lua/fk/plugin/treesitter.lua(view raw)

1
2
3
4
5
6
7
require("nvim-treesitter.configs").setup {
  ensure_installed = { "lua", "go", "gomod", "python", "yaml" },
  indent = { enable = true, disable = { "python", "go", "yaml" } },
  highlight = { enable = true, additional_vim_regex_highlighting = true },
  context_commentstring = { enable = true, enable_autocmd = false },
  autopairs = { enable = true },
}