Browse Source

Add aliases

coc
Marcel Schneider 7 years ago
parent
commit
6da84609d0
  1. 2
      tmux/tmux.conf
  2. 10
      zsh/aliases.zsh

2
tmux/tmux.conf

@ -56,7 +56,7 @@ set-option -g set-titles-string "#T - #W"
bind r source-file ~/.tmux.conf \; display "Config Reloaded!"
# quickly open a new window
bind N new-window
bind N new-window -c "#{pane_current_path}"
# split window and fix path for tmux 1.9
bind | split-window -h -c "#{pane_current_path}"

10
zsh/aliases.zsh

@ -0,0 +1,10 @@
# in case its not already thera
alias la='ls -la'
# GIT related
alias gs='git status'
alias gfr='git fetch && git rebase'
alias gl='git log'
alias gc='git commit '
alias ga='git add '
Loading…
Cancel
Save