Last active
December 15, 2015 16:49
-
-
Save richmidwinter/5291451 to your computer and use it in GitHub Desktop.
Vim runcom
This file contains hidden or 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
execute pathogen#infect() | |
syntax on | |
filetype on | |
colors solarized | |
syntax enable | |
set background=dark | |
colorscheme solarized | |
set ruler | |
set autoread | |
set lazyredraw | |
set nocompatible | |
set noswapfile | |
set nobackup | |
set expandtab | |
set tabstop=2 | |
set noerrorbells | |
compiler ruby | |
"retab "This will change existing tabs. For when I rule the world. | |
set dictionary=/usr/share/dict/words | |
nmap <F8> :TagbarToggle<CR> | |
map <C-n> :NERDTreeToggle<CR> | |
au BufNewFile,BufRead *.html.ftl set filetype=html | |
au BufNewFile,BufRead *.json set filetype=javascript | |
au BufNewFile,BufRead *.gradle set filetype=javascript | |
set runtimepath^=~/.vim/bundle/ctrlp.vim | |
set laststatus=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment