1
0

feat: Initial commit

This commit is contained in:
2024-07-29 20:11:11 +02:00
commit 028893231b
18 changed files with 5999 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
return {
-- Highlighting
{
'nvim-treesitter/nvim-treesitter',
config = function()
vim.cmd('TSUpdate')
require('nvim-treesitter.configs').setup({
ensure_installed = { 'lua', 'markdown', 'typescript', 'javascript', 'rust', 'json', 'toml' },
highlight = {
enable = true,
},
auto_install = true,
-- additional_vim_regex_highlighting = true,
})
end,
},
}