dotfiles/zsh/helpers/misc-stuff.zsh

10 lines
180 B
Bash
Raw Normal View History

2022-03-16 00:37:54 +01:00
if hash thefuck 2> /dev/null; then;
eval $(thefuck --alias)
2022-08-06 21:24:34 +02:00
fi
# Fix default editor, for systems without nvim installed
if ! hash nvim 2> /dev/null; then
alias nvim='vim'
fi