stygio/.config/fish/config.fish

35 lines
698 B
Fish

if status is-interactive
# Commands to run in interactive sessions can go here
end
function bind_bang
switch (commandline -t)[-1]
case "!"
commandline -t -- $history[1]
commandline -f repaint
case "*"
commandline -i !
end
end
function bind_dollar
switch (commandline -t)[-1]
case "!"
commandline -f backward-delete-char history-token-search-backward
case "*"
commandline -i '$'
end
end
function fish_user_key_bindings
bind ! bind_bang
bind '$' bind_dollar
end
function setXDG
set -gx XDG_CONFIG_HOME /home/(whoami)/\x2econfig/
end
# Starship
starship init fish | source