theme fixes
This commit is contained in:
parent
f48824ac56
commit
fa77b18e94
3 changed files with 15 additions and 13 deletions
|
@ -3,12 +3,7 @@ local M = {}
|
||||||
|
|
||||||
-- Path to overriding theme and highlights files
|
-- Path to overriding theme and highlights files
|
||||||
local highlights = require "highlights"
|
local highlights = require "highlights"
|
||||||
M.base46 = { theme = "lunar_witch" }
|
|
||||||
M.ui = {
|
M.ui = {
|
||||||
|
|
||||||
hl_override = highlights.override,
|
|
||||||
hl_add = highlights.add,
|
|
||||||
|
|
||||||
statusline = {
|
statusline = {
|
||||||
order = { "mode", "file", "git", "%=", "lsp_msg", "%=", "diagnostics", "lsp", "cwd", "cursor", "grapple" },
|
order = { "mode", "file", "git", "%=", "lsp_msg", "%=", "diagnostics", "lsp", "cwd", "cursor", "grapple" },
|
||||||
modules = {
|
modules = {
|
||||||
|
@ -27,5 +22,10 @@ M.ui = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
M.base46 = {
|
||||||
|
hl_override = highlights.override,
|
||||||
|
hl_add = highlights.add,
|
||||||
|
theme = "lunar_witch",
|
||||||
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -149,5 +149,7 @@ M.Obsidian = function()
|
||||||
end
|
end
|
||||||
M.Trouble = function()
|
M.Trouble = function()
|
||||||
map("n", "<leader>dx", "<cmd>Trouble diagnostics toggle<cr>", { desc = "Trouble Diagnostics" })
|
map("n", "<leader>dx", "<cmd>Trouble diagnostics toggle<cr>", { desc = "Trouble Diagnostics" })
|
||||||
|
map("n", "<leader>cs", "<cmd>Trouble qflist toggle<cr>", { desc = "Symbols (Trouble)" })
|
||||||
|
map("n", "<leader>dQ", "<cmd>Trouble symbols toggle focus=false<cr>", { desc = "Quickfix List (Trouble)" })
|
||||||
end
|
end
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -3,26 +3,26 @@ local M = {}
|
||||||
M.base_30 = {
|
M.base_30 = {
|
||||||
black = "#010206", -- theme bg
|
black = "#010206", -- theme bg
|
||||||
darker_black = "#000000",
|
darker_black = "#000000",
|
||||||
black2 = "#504573", -- base02
|
black2 = "#74689f", -- base02
|
||||||
|
|
||||||
one_bg = "#1e1b30", -- base01
|
one_bg = "#1e1b30", -- base01
|
||||||
one_bg2 = "#504573", -- base02
|
one_bg2 = "#74689f", -- base02
|
||||||
one_bg3 = "#746e95", -- base03
|
one_bg3 = "#8781ab", -- base03
|
||||||
|
|
||||||
light_grey = "#c1c7db", -- base05
|
light_grey = "#c1c7db", -- base05
|
||||||
grey_fg = "#9a9ab8", -- base04, used for comments
|
grey_fg = "#9a9ab8", -- base04, used for comments
|
||||||
grey = "#1a538d", -- accent
|
grey = "#1a538d", -- accent
|
||||||
grey_fg2 = "#5078a4", -- light accent, used for line numbers
|
grey_fg2 = "#5078a4", -- light accent, used for line numbers
|
||||||
|
|
||||||
line = "#504573", -- base02
|
line = "#74689f", -- base02
|
||||||
|
|
||||||
baby_pink = "#f3709a", -- pink
|
baby_pink = "#f3709a", -- pink
|
||||||
nord_blue = "#1a538d", -- accent
|
nord_blue = "#1a538d", -- accent
|
||||||
orange = "#eaa950",
|
orange = "#eaa950",
|
||||||
|
|
||||||
statusline_bg = "#1e1b30", -- base01
|
statusline_bg = "#1e1b30", -- base01
|
||||||
lightbg = "#504573", -- base02
|
lightbg = "#74689f", -- base02
|
||||||
lightbg2 = "#504573", -- base02
|
lightbg2 = "#74689f", -- base02
|
||||||
|
|
||||||
folder_bg = "#334773", -- ansi-blue
|
folder_bg = "#334773", -- ansi-blue
|
||||||
pmenu_bg = "#334773", -- ansi-blue
|
pmenu_bg = "#334773", -- ansi-blue
|
||||||
|
@ -46,8 +46,8 @@ M.base_30 = {
|
||||||
M.base_16 = {
|
M.base_16 = {
|
||||||
base00 = "#010206", -- Default bg
|
base00 = "#010206", -- Default bg
|
||||||
base01 = "#1e1b30", -- Lighter bg (status bar, line number, folding mks)
|
base01 = "#1e1b30", -- Lighter bg (status bar, line number, folding mks)
|
||||||
base02 = "#504573", -- Selection bg,
|
base02 = "#74689f", -- Selection bg,
|
||||||
base03 = "#746e95", -- Comments, invisibles, line hl, ansi-bright-black
|
base03 = "#8781ab", -- Comments, invisibles, line hl, ansi-bright-black
|
||||||
base04 = "#9a9ab8", -- Dark fg (status bars), ansi-white
|
base04 = "#9a9ab8", -- Dark fg (status bars), ansi-white
|
||||||
base05 = "#c1c7db", -- Default fg (caret, delimiters, Operators), ansi-bright-white
|
base05 = "#c1c7db", -- Default fg (caret, delimiters, Operators), ansi-bright-white
|
||||||
base06 = "#ebf6ff", -- Light fg (not often used), fg
|
base06 = "#ebf6ff", -- Light fg (not often used), fg
|
||||||
|
|
Loading…
Add table
Reference in a new issue