5529c37703
tweak colorscheme to be usable add nvim-treesitter setup file disable native nvim indentation
11 lines
274 B
Lua
11 lines
274 B
Lua
require("nvim-treesitter.configs").setup {
|
|
ensure_installed = { "c", "lua", "python", "bash" },
|
|
ignore_install = { "javascript" },
|
|
highlight = {
|
|
enable = true,
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
}
|