Last active
February 16, 2017 21:36
-
-
Save sam3k/63ab2bd5dc0c9a5c7513b5698e689e9d to your computer and use it in GitHub Desktop.
.bash_profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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