Skip to content

Commit

Permalink
feat: update theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonvermeulen committed Oct 14, 2024
1 parent 0fefb6c commit 19c0b2a
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions lua/ramon/plugins/kanagawa.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@ return {
"rebelot/kanagawa.nvim",
name = "kanagawa",
priority = 1000,
},
{
"rebelot/kanagawa.nvim",
name = "kanagawa",
config = function()
-- Default options:
require("kanagawa").setup({
compile = false, -- enable compiling the colorscheme
undercurl = true, -- enable undercurls
Expand All @@ -20,22 +15,11 @@ return {
transparent = false, -- do not set background color
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
terminalColors = true, -- define vim.g.terminal_color_{0,17}
colors = { -- add/modify theme and palette colors
palette = {},
theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
},
overrides = function(colors) -- add/modify highlights
return {}
end,
theme = "wave", -- Load "wave" theme when 'background' option is not set
background = { -- map the value of 'background' option to a theme
dark = "wave", -- try "dragon" !
light = "lotus",
},
theme = "dragon", -- Load "wave" theme when 'background' option is not set
})

-- setup must be called before loading
vim.cmd("colorscheme kanagawa dragon")
vim.cmd("colorscheme kanagawa-dragon")
end,
},
}

0 comments on commit 19c0b2a

Please sign in to comment.