Changed .bash_aliases to .aliases and added to bashrc and zshrc
This commit is contained in:
parent
05e01cdfa0
commit
d4d4b23627
4
.bashrc
4
.bashrc
@ -121,8 +121,8 @@ alias fucking='sudo'
|
|||||||
# ~/.bash_aliases, instead of adding them here directly.
|
# ~/.bash_aliases, instead of adding them here directly.
|
||||||
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
||||||
|
|
||||||
if [ -f ~/.bash_aliases ]; then
|
if [ -f ~/.aliases ]; then
|
||||||
. ~/.bash_aliases
|
. ~/.aliases
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# enable programmable completion features (you don't need to enable
|
# enable programmable completion features (you don't need to enable
|
||||||
|
|||||||
4
.zshrc
4
.zshrc
@ -254,6 +254,10 @@ if [ -f /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh ]; then
|
|||||||
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=#999'
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=#999'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -f ~/.aliases ]; then
|
||||||
|
. ~/.aliases
|
||||||
|
fi
|
||||||
|
|
||||||
# enable command-not-found if installed
|
# enable command-not-found if installed
|
||||||
if [ -f /etc/zsh_command_not_found ]; then
|
if [ -f /etc/zsh_command_not_found ]; then
|
||||||
. /etc/zsh_command_not_found
|
. /etc/zsh_command_not_found
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user