mirror of
https://github.com/Lissy93/dotfiles.git
synced 2024-11-22 15:33:09 +01:00
10 lines
180 B
Bash
10 lines
180 B
Bash
|
|
if hash thefuck 2> /dev/null; then;
|
|
eval $(thefuck --alias)
|
|
fi
|
|
|
|
# Fix default editor, for systems without nvim installed
|
|
if ! hash nvim 2> /dev/null; then
|
|
alias nvim='vim'
|
|
fi
|