Created
March 7, 2016 17:54
-
-
Save stevenpollack/1b435fcc3aaa5dbd6c30 to your computer and use it in GitHub Desktop.
test nvimrc
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
call plug#begin() | |
" vim-jedi for python-related stuff | |
Plug 'davidhalter/jedi-vim' | |
" plugin from http://vim-scripts.org/vim/scripts.html | |
" this is a utility package, likely required by other plugins | |
Plug 'vim-scripts/L9' | |
" unit pre-req, needs to be installed via `VimProcInstall` | |
Plug 'Shougo/vimproc.vim' | |
" browse files intelligently with unite: requires vimproc | |
Plug 'Shougo/unite.vim' | |
" getting punched in the face is no way to tango: | |
" vim-bbye stops :bdelete from nuking (v|h)splits | |
Plug 'moll/vim-bbye' | |
" Get latest versions of Vim-R plugin and runtime files | |
" vim R-plugin | |
"Plug 'jcfaria/Vim-R-plugin' | |
"Plug 'jalvesaq/R-Vim-runtime' | |
" airline plugin + themes | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
" tab completion | |
Plug 'ervandew/supertab' | |
" color schemes: monokai, southern lights | |
Plug 'sickill/vim-monokai' | |
Plug 'jalvesaq/southernlights' | |
" syntax highlighting | |
" markdown | |
Plug 'tpope/vim-markdown' | |
call plug#end() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment