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
# Homebrew binaries now take precedence over Apple defaults | |
export PATH=/usr/local/bin:$PATH | |
# For ctrl-z both ways | |
stty susp undef | |
bind '"\C-z":"fg\015"' | |
# Display Settings | |
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " | |
export PS1="\e[0;31m> \e[0;37m" |
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
# Unbind prefix from Ctrl-b to Ctrl-a | |
unbind C-b | |
set -g prefix C-a | |
bind C-a send-prefix | |
# Moving between panes using 'hjkl' | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R |
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
" pathogen vim modules | |
execute pathogen#infect() | |
set t_Co=256 | |
filetype plugin on | |
filetype indent on | |
syntax on | |
set laststatus=2 | |
" statusline+=%{FugitiveStatusline()} | |
" General |
NewerOlder