[MAJOR] Massive restructure. FIXED TAB BUG . Packer -> Lazy . barbar -> bufferline .

This commit is contained in:
Afonso Franco 2023-01-14 04:05:17 +00:00
parent 6796e50944
commit 51dddb6fc9
Signed by: afonso
GPG key ID: C459E0BB3DCEE899
16 changed files with 308 additions and 500 deletions

View file

@ -4,20 +4,21 @@ require('nvim-treesitter.install').update({ with_sync = true })
if not present then
return
return
end
local options = {
ensure_installed = {"lua", "haskell", "rust", },
ensure_installed = { "lua", "haskell", "rust", "markdown", "markdown_inline" },
highlight = {
enable = true,
use_languagetree = true,
},
highlight = {
enable = true,
use_languagetree = true,
additional_vim_regex_highlighting = { "markdown" },
},
indent = {
enable = true,
},
indent = {
enable = true,
},
}
treesitter.setup(options)