dotfiles/.config/fish/myfunctions/replacements.fish

16 lines
313 B
Fish
Raw Normal View History

2023-04-19 15:24:48 +01:00
function ls
eza --icons -l --sort type $argv
2023-04-19 15:24:48 +01:00
end
function nvim
2023-12-07 19:04:17 +00:00
/opt/homebrew/bin/nvim --listen /tmp/nvim.pipe $argv
end
function vim
2023-12-07 19:04:17 +00:00
/opt/homebrew/bin/nvim --listen /tmp/nvim.pipe $argv
end
abbr -a find fd
abbr -a df duf
2023-06-02 02:12:36 +01:00
abbr -a lg lazygit
2023-05-21 20:21:18 +01:00
function rm
echo "rm is disabled, use trash instead"
end