move aliases
This commit is contained in:
parent
721946dc16
commit
6d3f178375
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
alias bops="ssh boptop"
|
alias bops="ssh boptop"
|
||||||
alias dots="/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME"
|
alias dots="/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME"
|
||||||
|
@ -7,11 +7,13 @@ alias f=fff
|
||||||
alias fr="dict -d eng-fra"
|
alias fr="dict -d eng-fra"
|
||||||
alias key="$SCRIPTS/sshkey.sh"
|
alias key="$SCRIPTS/sshkey.sh"
|
||||||
alias nf="neofetch"
|
alias nf="neofetch"
|
||||||
alias p="ping archlinux.org"
|
|
||||||
alias o=xdg-open
|
alias o=xdg-open
|
||||||
|
alias p="ping archlinux.org"
|
||||||
|
alias pub="curl ident.me; echo"
|
||||||
alias r=ranger
|
alias r=ranger
|
||||||
alias s="search"
|
alias s="search"
|
||||||
alias sv="sudo $EDITOR"
|
alias sv="sudo $EDITOR"
|
||||||
|
alias sx="startx"
|
||||||
alias t="$SCRIPTS/term.sh &"
|
alias t="$SCRIPTS/term.sh &"
|
||||||
alias td=todolist
|
alias td=todolist
|
||||||
alias theme="$SCRIPTS/theme"
|
alias theme="$SCRIPTS/theme"
|
5
.zshrc
5
.zshrc
|
@ -29,7 +29,10 @@ plugins=(
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
|
|
||||||
source "$SCRIPTS/alias.sh"
|
if [ -f ~/.zsh_aliases ]; then
|
||||||
|
. ~/.zsh_aliases
|
||||||
|
fi
|
||||||
|
|
||||||
source "$SCRIPTS/func.sh"
|
source "$SCRIPTS/func.sh"
|
||||||
|
|
||||||
# start ssh-agent automatically
|
# start ssh-agent automatically
|
||||||
|
|
Loading…
Reference in New Issue