This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/lua/plugin/treesitter.lua
David JULIEN 5529c37703 feat: add treesitter highlighting and indentation
tweak colorscheme to be usable
add nvim-treesitter setup file
disable native nvim indentation
2021-05-25 16:34:37 +02:00

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,
},
}