add new aliases for Slackware
This commit is contained in:
parent
f83e08b05f
commit
988477f903
|
@ -51,7 +51,7 @@ DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
||||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||||
# Add wisely, as too many plugins slow down shell startup.
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
plugins=(wd)
|
plugins=(wd tmux)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
@ -66,6 +66,7 @@ source $ZSH/oh-my-zsh.sh
|
||||||
# if [[ -n $SSH_CONNECTION ]]; then
|
# if [[ -n $SSH_CONNECTION ]]; then
|
||||||
# export EDITOR='vim'
|
# export EDITOR='vim'
|
||||||
# else
|
# else
|
||||||
|
|
||||||
# export EDITOR='mvim'
|
# export EDITOR='mvim'
|
||||||
# fi
|
# fi
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ export RANGER_LOAD_DEFAULT_RC=FALSE
|
||||||
############################################################
|
############################################################
|
||||||
## Exports
|
## Exports
|
||||||
############################################################
|
############################################################
|
||||||
export EDITOR='nvim'
|
export EDITOR='vim'
|
||||||
export PAGER='less'
|
export PAGER='less'
|
||||||
export BROWSER='qutebrowser'
|
export BROWSER='qutebrowser'
|
||||||
|
|
||||||
|
@ -44,8 +44,12 @@ transfer()
|
||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
# neo- aliases
|
# neo- aliases
|
||||||
alias vim="nvim"
|
if type nvim > /dev/null 2>&1; then
|
||||||
|
alias vim='nvim'
|
||||||
|
fi
|
||||||
alias mutt='neomutt'
|
alias mutt='neomutt'
|
||||||
|
|
||||||
|
# Quick Emacs
|
||||||
alias qemacs='emacs -q -nw'
|
alias qemacs='emacs -q -nw'
|
||||||
alias sqemacs='sudo -q emacs -nw'
|
alias sqemacs='sudo -q emacs -nw'
|
||||||
|
|
||||||
|
@ -108,7 +112,16 @@ if pacman -V &> /dev/null; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Slackware
|
# Slackware
|
||||||
if [[ -e /etc/slackware-release ]]; then
|
if [[ -e /etc/slackware-version ]]; then
|
||||||
|
# Slackware doesn't add sysad tools to user path by default
|
||||||
|
export PATH="$PATH:/usr/local/sbin:/sbin:/usr/sbin"
|
||||||
|
|
||||||
|
# Priv escalation
|
||||||
alias slapt-get='sudo slapt-get'
|
alias slapt-get='sudo slapt-get'
|
||||||
alias slackpkg='sudo slackpkg'
|
alias slackpkg='sudo slackpkg'
|
||||||
|
alias sbopkg='sudo sbopkg'
|
||||||
|
alias installpkg='sudo installpkg'
|
||||||
|
alias removepkg='sudo removepkg'
|
||||||
|
alias pm-suspend='sudo pmsuspend'
|
||||||
|
alias pm-hibernate='sudo pm-hibernate'
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue