This commit is contained in:
Never Gude 2026-03-02 22:25:41 +01:00
parent 96f1792c09
commit 4fc1e20fdd
30 changed files with 1045 additions and 39 deletions

View file

@ -14,6 +14,10 @@ if status is-interactive
fish_clipboard_paste
end
function open --wraps 'open'
xdg-open $argv >/dev/null 2>/dev/null & disown
end
function alacritty --description 'Create new Alacritty window'
command alacritty msg create-window $argv
end
@ -27,44 +31,44 @@ if status is-interactive
end
# Colorscheme
set -U fish_color_normal normal
set -U fish_color_command brgreen --bold
set -U fish_color_keyword brred
set -U fish_color_quote green --italics
set -U fish_color_redirection yellow
set -U fish_color_end cyan
set -U fish_color_error red --underline=curly
set -U fish_color_param normal
set -U fish_color_comment brblack
set -U fish_color_selection normal --bold --background brblack
set -U fish_color_search_match
set -U fish_color_history_current
set -U fish_color_operator yellow
set -U fish_color_escape white --bold
set -U fish_color_cwd green
set -U fish_color_cwd_root red
set -U fish_color_option brblue
set -U fish_color_valid_path --underline
set -U fish_color_autosuggestion white
set -U fish_color_user brgreen
set -U fish_color_host normal
set -U fish_color_host_remote yellow
set -U fish_color_history_current --bold
set -U fish_color_status red
set -U fish_color_cancel white --bold
set -U fish_pager_color_prefix normal --bold --underline
set -U fish_pager_color_progress normal --reverse
set -U fish_pager_color_completion normal
set -U fish_pager_color_description yellow --italics
set -U fish_pager_color_selected_background --background brblue
set -U fish_pager_color_secondary_background
set -U fish_pager_color_selected_completion black --bold
set -U fish_pager_color_background
set -U fish_pager_color_selected_description bryellow --bold --italics
set -U fish_pager_color_secondary_prefix
set -U fish_pager_color_secondary_description
set -U fish_pager_color_selected_prefix black --bold --underline
set -U fish_pager_color_secondary_completion
set fish_color_normal normal
set fish_color_command brgreen --bold
set fish_color_keyword brred
set fish_color_quote green --italics
set fish_color_redirection yellow
set fish_color_end cyan
set fish_color_error red --underline=curly
set fish_color_param normal
set fish_color_comment brblack
set fish_color_selection normal --bold --background brblack
set fish_color_search_match
set fish_color_history_current
set fish_color_operator yellow
set fish_color_escape white --bold
set fish_color_cwd green
set fish_color_cwd_root red
set fish_color_option brblue
set fish_color_valid_path --underline
set fish_color_autosuggestion white
set fish_color_user brgreen
set fish_color_host normal
set fish_color_host_remote yellow
set fish_color_history_current --bold
set fish_color_status red
set fish_color_cancel white --bold
set fish_pager_color_prefix normal --bold --underline
set fish_pager_color_progress normal --reverse
set fish_pager_color_completion normal
set fish_pager_color_description yellow --italics
set fish_pager_color_selected_background --background brblue
set fish_pager_color_secondary_background
set fish_pager_color_selected_completion black --bold
set fish_pager_color_background
set fish_pager_color_selected_description bryellow --bold --italics
set fish_pager_color_secondary_prefix
set fish_pager_color_secondary_description
set fish_pager_color_selected_prefix black --bold --underline
set fish_pager_color_secondary_completion
end
if test $XDG_CURRENT_DESKTOP = niri