Skip to content

Commit

Permalink
Adding size command
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kislyuk committed Nov 28, 2016
1 parent 71e01bf commit 6c257ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles
############################

git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

########## Variables

dir=~/dotfiles # dotfiles directory
Expand Down
3 changes: 3 additions & 0 deletions tmux.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'

#### COLOUR (Solarized 256)
set-option -g default-terminal screen-256color
#set -g default-terminal "screen-256color"
Expand Down
5 changes: 4 additions & 1 deletion zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ source $ZSH/oh-my-zsh.sh

# User configuration

export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin"
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin":$PATH
# export MANPATH="/usr/local/man:$MANPATH"

# You may need to manually set your language environment
Expand Down Expand Up @@ -99,11 +99,14 @@ alias ga='git commit -a --amend'
alias grm='git rebase origin/master'
alias gp='git pull origin master'
alias gra='git reset --soft HEAD@{1}'
alias gbdate='for k in `git branch | perl -pe '\''s/^..(.*?)( ->.*)?$/\1/'\''`; do echo -e `git show --pretty=format:"%Cgreen%ci %Cblue%cr%Creset" $k -- | head -n 1`\\t$k; done | sort -r'

alias sl='s4cmd ls'
alias sg='s4cmd get'
alias sp='s4cmd put'

alias size='du -sh *'

# Watcher
alias watch='python ~/bin/keepwatching'

Expand Down

0 comments on commit 6c257ac

Please sign in to comment.