Created
May 22, 2015 21:42
-
-
Save psyomn/14a646269360997bb334 to your computer and use it in GitHub Desktop.
.vimrc
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
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'gmarik/Vundle.vim' | |
| Plugin 'scrooloose/nerdtree' | |
| Plugin 'scrooloose/syntastic' | |
| Plugin 'tpope/vim-fugitive' | |
| Bundle 'lervag/vim-latex' | |
| Plugin 'tpope/vim-rails' | |
| Plugin 'tpope/vim-bundler' | |
| Plugin 'jimenezrick/vimerl' | |
| Plugin 'flazz/vim-colorschemes' | |
| Plugin 'vim-scripts/Ada-Bundle' | |
| Plugin 'bling/vim-airline' | |
| Plugin 'majutsushi/tagbar' | |
| Plugin 'dag/vim2hs' | |
| Plugin 'godlygeek/tabular' | |
| Plugin 'bronson/vim-trailing-whitespace' | |
| Plugin 'wting/rust.vim' | |
| Plugin 'fatih/vim-go' | |
| Plugin 'moll/vim-node' | |
| Plugin 'jelera/vim-javascript-syntax' | |
| Plugin 'hdima/python-syntax' | |
| call vundle#end() | |
| filetype indent on | |
| " For omni completion | |
| filetype plugin on | |
| set omnifunc=syntaxcomplete#Complete | |
| " AIRLINE | |
| let g:airline#extensions#tabline#enabled = 1 | |
| let g:airline_theme='badwolf' | |
| let g:airline_powerline_fonts=1 | |
| " SYNTASTIC | |
| let g:syntastic_cpp_compiler = 'g++' | |
| let g:syntastic_cpp_compiler_options = ' -std=c++11' | |
| set number | |
| set ts=3 | |
| set nowrap | |
| set expandtab | |
| set shiftwidth=2 | |
| set softtabstop=2 | |
| set tw=80 | |
| au Bufread,BufNewFile *.md set filetype=markdown | |
| " make vim-airline always visible | |
| set laststatus=2 | |
| set t_Co=256 | |
| " Because folding is stupid | |
| set nofoldenable | |
| colorscheme 256-jungle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment