new themes

This commit is contained in:
tawfeeq 2024-08-28 18:55:57 +02:00
parent 22bce609f1
commit 7a26e6c951
20 changed files with 353 additions and 26 deletions

View file

@ -1 +1,34 @@
return { 'rebelot/kanagawa.nvim' }
return {
'rebelot/kanagawa.nvim',
config = function()
require('kanagawa').setup {
colors = {
palette = {
-- change all usages of these colors
sumiInk0 = '#0D0D0D',
fujiWhite = '#FFFFFF',
},
theme = {
-- change specific usages for a certain theme, or for all of them
wave = {
ui = {
float = {
bg = 'none',
},
},
},
dragon = {
syn = {
parameter = 'yellow',
},
},
all = {
ui = {
bg_gutter = 'none',
},
},
},
},
}
end,
}