mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-10-31 21:15:25 +00:00
33 lines
674 B
Lua
33 lines
674 B
Lua
local M = {}
|
|
|
|
M.colorscheme = 'nightfox'
|
|
M.transparent_bg = true
|
|
|
|
M.themes = {
|
|
gruvbox = {
|
|
colorscheme = 'gruvbox',
|
|
lualine_theme = 'gruvbox',
|
|
},
|
|
melange = {
|
|
colorscheme = 'melange',
|
|
lualine_theme = 'OceanicNext',
|
|
},
|
|
nightfox = {
|
|
colorscheme = 'nightfox',
|
|
lualine_theme = 'nightfox'
|
|
}
|
|
}
|
|
|
|
-- Gruvbox
|
|
local st_ok, palette = pcall(require, M.colorscheme .. '.palette')
|
|
if st_ok then
|
|
M.themes.gruvbox.highlight_bg_color = palette.gray
|
|
end
|
|
-- melange
|
|
st_ok, palette = pcall(require, M.colorscheme .. '.palettes.dark')
|
|
if st_ok then
|
|
M.themes.melange.highlight_bg_color = palette.a.sel
|
|
end
|
|
|
|
|
|
return M
|