colorscheme: improve selection of colorscheme

This commit is contained in:
David Senoner 2025-01-20 15:57:43 +01:00
parent 40fa8c3ade
commit 49015143c5
2 changed files with 28 additions and 1 deletions

View file

@ -4,6 +4,12 @@ return {
priority = 1000,
config = function ()
vim.cmd("colorscheme kanagawa-dragon")
local conf = require("kanagawa")
conf.setup({
theme = "dragon"
})
vim.cmd("colorscheme kanagawa")
end
}