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
### Custom commands | |
# Show hidden dot files, directories, etc in finder | |
alias show="defaults write com.apple.finder AppleShowAllFiles YES" | |
# Hide files that were shown with the above command | |
alias hide="defaults write com.apple.finder AppleShowAllFiles NO" | |
# Remember to option right-click finder and relaunch after using show/hide | |
# List the current directory with some better info and formatting | |
alias ll="ls -lahG" |
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
# Load .bashrc if it exists | |
test -f ~/.bashrc && source ~/.bashrc |
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
"====[ Plugin manager ]======================================================== | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'tpope/vim-sensible' |