Made changes

This commit is contained in:
Austen Adler 2014-08-22 14:14:45 -04:00
parent 81fe5eff73
commit 6edb18aa07
2 changed files with 7 additions and 1 deletions

View File

@ -47,6 +47,7 @@ HIST_STAMPS="mm/dd/yyyy"
plugins=(git) plugins=(git)
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
source /etc/zsh_command_not_found
# User configuration # User configuration

View File

@ -130,6 +130,8 @@ vnoremap <C-Up> [egv
vnoremap <C-Down> ]egv vnoremap <C-Down> ]egv
nnoremap / /\v nnoremap / /\v
vnoremap / /\v vnoremap / /\v
inoremap jk <Esc>a
inoremap kj <Esc>a
set guicursor+=n-v-c:blinkon0 set guicursor+=n-v-c:blinkon0
set formatoptions-=r set formatoptions-=r
set formatoptions-=o set formatoptions-=o
@ -169,6 +171,7 @@ set t_Co=256
set gdefault set gdefault
set nocompatible set nocompatible
set rtp+=~/.vim/bundle/vundle/ set rtp+=~/.vim/bundle/vundle/
set ignorecase
syntax on syntax on
let g:airline_left_sep='▶' let g:airline_left_sep='▶'
let g:airline_right_sep='◀' let g:airline_right_sep='◀'
@ -296,7 +299,9 @@ Bundle 'sirver/UltiSnips'
Bundle 'honza/vim-snippets' Bundle 'honza/vim-snippets'
" | https://github.com/honza/vim-snippets " | https://github.com/honza/vim-snippets
Bundle 'Shougo/neocomplete.vim' Bundle 'Shougo/neocomplete.vim'
" | https://github.com/Shougo/neocomplete.vim "Autocompletes | https://github.com/Shougo/neocomplete.vim
Bundle 'othree/eregex.vim'
"Real regexes in vim | https://github.com/othree/eregex.vim
" | " |
"DO NOT DELETE LINE ABOVE OR \bun WILL BREAK "DO NOT DELETE LINE ABOVE OR \bun WILL BREAK
filetype plugin indent on filetype plugin indent on