Updated Neovim config to lua, cleaned up unneccecary plugins

This commit is contained in:
2025-10-04 23:47:12 +02:00
parent d453460c01
commit 9308fa14a5
12 changed files with 328 additions and 191 deletions
+16
View File
@@ -0,0 +1,16 @@
require("nvim-treesitter.configs").setup({
ensure_installed = {
-- Programming Languages
"lua", "python", "bash", "javascript", "typescript",
"go", "java", "c", "cpp", "c_sharp", "rust",
-- Web Languages
"html", "css", "scss", "json", "yaml", "toml", "xml",
-- Other formats
"markdown", "markdown_inline", "sql", "dockerfile", "gitignore"
},
highlight = { enable = true },
indent = { enable = true },
})