This commit is contained in:
Never Gude 2026-03-02 22:29:47 +01:00
parent 4fc1e20fdd
commit e9182a3064

View file

@ -14,8 +14,8 @@ if status is-interactive
fish_clipboard_paste
end
function open --wraps 'open'
xdg-open $argv >/dev/null 2>/dev/null & disown
function open --description 'Opens a file with xdg-open detached from shell'
xdg-open $argv &>/dev/null & disown
end
function alacritty --description 'Create new Alacritty window'
@ -26,7 +26,7 @@ if status is-interactive
man $argv | nvim +Man!
end
function mvi --description 'Launches \d mpv with mvi configuration'
function mvi --description 'Launches mpv with mvi configuration'
mpv --config-dir=$HOME/.config/mvi/ $argv
end