Skip to content

Instantly share code, notes, and snippets.

@Traviskn
Traviskn / .bashrc
Last active May 4, 2016 17:05
My Bash Config
### 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"
@Traviskn
Traviskn / .bash_profile
Created August 7, 2015 16:42
My bash_profile
# Load .bashrc if it exists
test -f ~/.bashrc && source ~/.bashrc
@Traviskn
Traviskn / .vimrc
Last active May 4, 2016 17:11
My Vim Config
"====[ Plugin manager ]========================================================
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-sensible'