1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-02-04 13:30:26 +01:00

Correctly load the colorscheme

This commit is contained in:
2026-01-18 22:20:35 +01:00
parent d10cbc5336
commit 846398a1d3

View File

@@ -1,9 +1,13 @@
return {
'folke/tokyonight.nvim',
'rebelot/kanagawa.nvim',
'Shatur/neovim-ayu',
config = function()
-- load the colorscheme
vim.cmd([[colorscheme kanagawa-dragon]])
end,
{ "folke/tokyonight.nvim" },
{ "rebelot/kanagawa.nvim" },
{ "Shatur/neovim-ayu" },
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "kanagawa-dragon",
},
}
}