Fix nvim config: copy files directly instead of submodule

This commit is contained in:
2026-06-07 23:04:54 +03:30
parent 4dfabb4710
commit 4126c53488
17 changed files with 798 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
vim.g.catppuccin_flavour = "mocha"
return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin-mocha",
},
},
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
opts = {
flavour = "mocha",
transparent_background = true,
integrations = {
treesitter = true,
native_lsp = { enabled = true },
cmp = true,
gitsigns = true,
telescope = true,
noice = true,
which_key = true,
},
},
},
}