feat: config moved

This commit is contained in:
landam
2025-09-12 18:20:36 +02:00
commit f7bad57efb
373 changed files with 39942 additions and 0 deletions

View File

@ -0,0 +1,50 @@
return {
-- add gruvbox
{ "blazkowolf/gruber-darker.nvim" },
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruber-darker",
},
},
-- add pyright to lspconfig
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- pyright will be automatically installed with mason and loaded with lspconfig
pyright = {},
clangd = {},
},
},
},
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"bash",
"html",
"javascript",
"json",
"lua",
"markdown",
"markdown_inline",
"python",
"query",
"regex",
"tsx",
"typescript",
"vim",
"yaml",
"c",
"cpp",
},
},
},
}