feat: rewrite of nvim dotfiles

This commit is contained in:
2025-09-07 12:42:40 +02:00
parent 3dbe78f224
commit 2c3ccb816c
6 changed files with 124 additions and 11 deletions

View File

@@ -0,0 +1,20 @@
return{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
dependencies = {
-- Automatically install LSPs and related tools to stdpath for Neovim
"williamboman/mason.nvim",
"williamboman/mason-lspconfig.nvim",
},
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}