Cleanups
This commit is contained in:
parent
556bd37c3b
commit
486d4e8fe9
1 changed files with 11 additions and 9 deletions
20
.zshrc
20
.zshrc
|
|
@ -1,27 +1,29 @@
|
||||||
|
# Extend my $PATH to $PATH/bin
|
||||||
|
export PATH=$PATH:$HOME/bin
|
||||||
|
|
||||||
|
# Now source some stuff that should not be public
|
||||||
|
source ~/.zshprivate
|
||||||
|
|
||||||
# History settings
|
# History settings
|
||||||
HISTSIZE=100000
|
HISTSIZE=100000
|
||||||
SAVEHIST=100000
|
SAVEHIST=100000
|
||||||
HISTFILE=~/.zsh_history
|
HISTFILE=~/.zsh_history
|
||||||
|
|
||||||
# Source some stuff that should not be public
|
|
||||||
source ~/.zshprivate
|
|
||||||
|
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
|
|
||||||
|
# Some aliases
|
||||||
|
alias ..='cd ..'
|
||||||
|
alias ...='cd ../..'
|
||||||
|
alias ....='cd ../../..'
|
||||||
|
alias .....='cd ../../../..'
|
||||||
alias l='ls --color'
|
alias l='ls --color'
|
||||||
alias ls='ls --color'
|
alias ls='ls --color'
|
||||||
alias lsa='ls -a --color'
|
alias lsa='ls -a --color'
|
||||||
alias ll='ls --color -l'
|
alias ll='ls --color -l'
|
||||||
alias lla='ls -la --color'
|
alias lla='ls -la --color'
|
||||||
alias lsd='ls -ld --color'
|
alias lsd='ls -ld --color'
|
||||||
|
|
||||||
alias xterm='uxterm -bg black -fg grey -sb -leftbar -si -bc -cr orange'
|
alias xterm='uxterm -bg black -fg grey -sb -leftbar -si -bc -cr orange'
|
||||||
|
|
||||||
alias ..='cd ..'
|
|
||||||
alias ...='cd ../..'
|
|
||||||
alias ....='cd ../../..'
|
|
||||||
alias .....='cd ../../../..'
|
|
||||||
|
|
||||||
# Set up the Zsh
|
# Set up the Zsh
|
||||||
setopt extendedhistory
|
setopt extendedhistory
|
||||||
setopt histignoredups
|
setopt histignoredups
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue