1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-02-04 07:40:27 +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 { return {
'folke/tokyonight.nvim', { "folke/tokyonight.nvim" },
'rebelot/kanagawa.nvim', { "rebelot/kanagawa.nvim" },
'Shatur/neovim-ayu', { "Shatur/neovim-ayu" },
config = function()
-- load the colorscheme -- Configure LazyVim to load gruvbox
vim.cmd([[colorscheme kanagawa-dragon]]) {
end, "LazyVim/LazyVim",
opts = {
colorscheme = "kanagawa-dragon",
},
}
} }