init.lua/lua/plugins/colorscheme.lua
David Senoner a124b15366
Some checks failed
Send submodule updates to parent repo / update (main) (push) Has been cancelled
Send submodule updates to parent repo / update (tiling) (push) Has been cancelled
fixed 0.11 deprecations
2025-04-18 15:45:26 +02:00

15 lines
237 B
Lua

return {
"rebelot/kanagawa.nvim",
name = "kanagawa",
priority = 1000,
config = function ()
local conf = require("kanagawa")
conf.setup({
theme = "dragon"
})
vim.cmd("colorscheme kanagawa-dragon")
end
}