# vi key bindings
fish_vi_key_bindings
# show entire path
set fish_prompt_pwd_dir_length 0
# fix default editor
set -x EDITOR vim
set -x VISUAL vim
# override ls
function ls
command ls -rtlh --color=auto $argv
end
function lss
command ls -rSlh --color=auto $argv
end
function ls1
command ls -1 $argv
end
function stamp
date +%Y-%m-%d_%H%M%S
end
function vim
command $HOME/bin/nvim.appimage $argv
end
set -x PATH $PATH $HOME/bin $HOME/bin/go/bin
set -x PYTHONDONTWRITEBYTECODE 1