Compare commits

...

2 commits

2 changed files with 5 additions and 3 deletions

View file

@ -107,12 +107,12 @@
fish_prompt.body = '' fish_prompt.body = ''
echo -e "\033[s\033[$LINES;1H\033[1;2;38;5;238m$(string pad -c '' -w $COLUMNS (fish_jj_prompt || fish_vcs_prompt))\033[0m\033[u" echo -e "\033[s\033[$LINES;1H\033[1;2;38;5;238m$(string pad -c '' -w $COLUMNS (fish_jj_prompt || fish_vcs_prompt))\033[0m\033[u"
string join "" -- (set_color --italics) (prompt_hostname) ':' (prompt_pwd --full-length-dirs=4) (set_color yellow) ' ' (set_color normal) string join "" -- (set_color --italics) (prompt_hostname) ':' (prompt_pwd --full-length-dirs=4) (set_color --bold) ' ' (set_color normal)
''; '';
transient_prompt_func.body = '' transient_prompt_func.body = ''
echo echo
string join "" -- (set_color yellow) ' ' (set_color normal) string join "" -- (set_color bold) ' ' (set_color normal)
''; '';
rg.body = '' rg.body = ''

View file

@ -66,7 +66,7 @@ local colors = {
diagnostic_error = hsl(353, 100, 45), diagnostic_error = hsl(353, 100, 45),
diagnostic_warning = hsl(30, 100, 50), diagnostic_warning = hsl(30, 100, 50),
diagnostic_info = hsl(176, 80, 60), diagnostic_info = hsl(176, 80, 60),
diagnostic_hint = hsl(176, 80, 60), diagnostic_hint = hsl(210, 74, 60),
popup_error_bg = hsl(0, 95, 7), popup_error_bg = hsl(0, 95, 7),
popup_warning_bg = hsl(27, 95, 7), popup_warning_bg = hsl(27, 95, 7),
@ -189,6 +189,8 @@ local setupGroups = function(c)
MiniClueDescSingle = { bg = c.background, fg = c.foreground }, MiniClueDescSingle = { bg = c.background, fg = c.foreground },
MiniClueSeparator = { link = "MiniClueBorder" }, MiniClueSeparator = { link = "MiniClueBorder" },
MiniCursorWord = { underdotted = true, bold = true, sp = c.diagnostic_hint },
MiniStarterCurrent = { link = "MiniPickMatchCurrent" }, MiniStarterCurrent = { link = "MiniPickMatchCurrent" },
BlinkCmpMenu = { bg = c.cmp_bg, fg = c.cmp_fg }, BlinkCmpMenu = { bg = c.cmp_bg, fg = c.cmp_fg },