Skip to content

Instantly share code, notes, and snippets.

@sam3k
Last active February 16, 2017 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sam3k/63ab2bd5dc0c9a5c7513b5698e689e9d to your computer and use it in GitHub Desktop.
Save sam3k/63ab2bd5dc0c9a5c7513b5698e689e9d to your computer and use it in GitHub Desktop.
.bash_profile
# Some `ls` shortcuts
alias ll="ls -laG" # ls vertically and with more info in a table/column layout
alias lscount="ls -1 | wc -l" # count files/folders in current directory
# resize tmux window up|down
alias tmuxup="tmux resize-p -U 5"
alias tmuxdown="tmux resize-p -D 5"
alias tmuxleft="tmux resize-p -L 5"
alias tmuxright="tmux resize-p -R 5"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment