
* feat(keymaps.lua): add new keymaps for various actions * feat(treesitter.lua): add treesitter configuration for terraform language * chore(init.lua): comment out unused keymap for signature help * feat(plugins): add undotree plugin * feat(plugins): add lsp_signature plugin and setup configuration
6 lines
188 B
Lua
6 lines
188 B
Lua
require('nvim-treesitter.configs').setup {
|
|
-- Add languages to be installed here that you want installed for treesitter
|
|
ensure_installed = {'terraform'},
|
|
auto_install = true
|
|
}
|