Last active
August 22, 2017 07:02
-
-
Save essanpupil/8baf238a5dd14fa8a04bd0292a7b6e5e to your computer and use it in GitHub Desktop.
My personal 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
| call plug#begin('~/.vim/plugged') | |
| Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'scrooloose/syntastic' | |
| Plug 'kien/ctrlp.vim' | |
| Plug 'bling/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| Plug 'scrooloose/nerdcommenter' | |
| Plug 'pangloss/vim-javascript' | |
| Plug 'fatih/vim-go' | |
| Plug 'nathanaelkane/vim-indent-guides' | |
| Plug 'glench/vim-jinja2-syntax' | |
| Plug 'hynek/vim-python-pep8-indent' | |
| call plug#end() | |
| let g:airline_theme='molokai' | |
| setlocal foldmethod=indent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment