gleam support in nvim

required tree-sitter grammar so i just grabbed them all, why not
This commit is contained in:
Haak Saxberg 2024-07-28 22:40:39 -07:00
parent 95e3ebacfa
commit 908241eb67
3 changed files with 11 additions and 0 deletions

View file

@ -86,3 +86,11 @@ set scrolloff=10
if filereadable($HOME . "/.vimrc.local")
source ~/.vimrc.local
endif
lua << EOF
require'nvim-treesitter.configs'.setup {
highlight = {
enable = true,
},
}
EOF