Skip to content

Instantly share code, notes, and snippets.

@stevenpollack
Created March 7, 2016 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevenpollack/1b435fcc3aaa5dbd6c30 to your computer and use it in GitHub Desktop.
Save stevenpollack/1b435fcc3aaa5dbd6c30 to your computer and use it in GitHub Desktop.
test nvimrc
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