some more fixes

This commit is contained in:
Dennis Schoepf 2026-03-05 23:31:03 +01:00
parent 8c1438bf10
commit c8b73ad846
3 changed files with 14 additions and 12 deletions

View file

@ -36,7 +36,6 @@
picker = { picker = {
enabled = true, enabled = true,
prompt = "λ ", prompt = "λ ",
layout = { preset = "ivy" },
}, },
statuscolumn = { enabled = true }, statuscolumn = { enabled = true },
}) })

View file

@ -25,8 +25,8 @@ hi("IncSearch", { bg = palette.magenta_subtle_bg, fg = palette.magenta })
hi("ModeMsg", { bold = true, cterm = { bold = true } }) hi("ModeMsg", { bold = true, cterm = { bold = true } })
hi("NonText", { fg = palette.grey, ctermfg = "DarkGrey" }) hi("NonText", { fg = palette.grey, ctermfg = "DarkGrey" })
hi("PmenuSbar", { bg = palette.grey, ctermbg = "Grey" }) hi("PmenuSbar", { bg = palette.grey, ctermbg = "Grey" })
hi("StatusLine", { reverse = true, bold = true, cterm = { reverse = true, bold = true } }) hi("StatusLine", { bg = palette.bg_secondary, fg = palette.fg, bold = true, cterm = { reverse = true, bold = true } })
hi("StatusLineNC", { reverse = true, cterm = { reverse = true } }) hi("StatusLineNC", { bg = palette.bg_secondary, fg = palette.fg, cterm = { reverse = true } })
hi("TabLineFill", { reverse = true, cterm = { reverse = true } }) hi("TabLineFill", { reverse = true, cterm = { reverse = true } })
hi("TabLineSel", { bold = true, cterm = { bold = true } }) hi("TabLineSel", { bold = true, cterm = { bold = true } })
hi("TermCursor", { reverse = true, cterm = { reverse = true } }) hi("TermCursor", { reverse = true, cterm = { reverse = true } })
@ -210,7 +210,7 @@ hi("@lsp.type.variable", { link = "Identifier" })
hi("@lsp.typemod.keyword.documentation", { fg = palette.grey, bold = true }) hi("@lsp.typemod.keyword.documentation", { fg = palette.grey, bold = true })
if vim.o.background == "light" then if vim.o.background == "light" then
-- TODO: Define light scheme -- TODO: Define light scheme
else else
-- Default colors only used with a dark background. -- Default colors only used with a dark background.
hi("ColorColumn", { bg = palette.red_subtle_bg, ctermbg = "DarkRed" }) hi("ColorColumn", { bg = palette.red_subtle_bg, ctermbg = "DarkRed" })

View file

@ -79,6 +79,9 @@
enable = true; enable = true;
settings = { settings = {
options = { options = {
border_active_window = true;
border_color = "#c57faf";
sliver_width = 10;
preset_column_widths = [ preset_column_widths = [
0.25 0.25
0.5 0.5
@ -93,14 +96,14 @@
padding_right = 4; padding_right = 4;
}; };
bindings = { bindings = {
window_focus_west = "cmd - h"; window_focus_west = "alt - h";
window_focus_east = "cmd - l"; window_focus_east = "alt - l";
window_focus_north = "cmd - k"; window_focus_north = "alt - k";
window_focus_south = "cmd - j"; window_focusalt_south = "alt - j";
window_swap_west = "alt - h"; window_swap_west = "alt - shift - h";
window_swap_east = "alt - l"; window_swap_east = "alt - shift - l";
window_swap_first = "alt + shift - h"; window_swap_first = "alt + shift - a";
window_swap_last = "alt + shift - l"; window_swap_last = "alt + shift - e";
window_center = "alt - c"; window_center = "alt - c";
window_resize = "alt - r"; window_resize = "alt - r";
window_fullwidth = "alt - f"; window_fullwidth = "alt - f";