Created
March 4, 2015 00:32
-
-
Save thockin/a5522464c1e7b55f7dca to your computer and use it in GitHub Desktop.
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
:ab teh the | |
:ab Teh The | |
:ab liek like | |
:ab Liek Like | |
:ab tehn then | |
:ab Tehn Then | |
:ab tehm them | |
:set showmode | |
:set wm=5 | |
:set autoindent | |
:set tabstop=8 | |
:set autowrite | |
:set magic | |
:set bg=dark |
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
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" This is the Vundle package, which can be found on GitHub. | |
" For GitHub repos, you specify plugins using the | |
" 'user/repository' format | |
Plugin 'gmarik/Vundle.vim' | |
let g:go_fmt_command = "goimports" | |
Plugin 'fatih/vim-go' | |
Plugin 'Valloric/YouCompleteMe' | |
call vundle#end() | |
" Now we can turn our filetype functionality back on | |
filetype plugin indent on | |
set list | |
set listchars=tab:>-,trail:_ | |
set ai | |
syn on | |
set bg=dark | |
set modeline | |
source ~/.exrc | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment