Skip to content

Instantly share code, notes, and snippets.

@greghor
Last active September 30, 2019 09:14
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 greghor/7ed17096fdf69ae3068868acba24d944 to your computer and use it in GitHub Desktop.
Save greghor/7ed17096fdf69ae3068868acba24d944 to your computer and use it in GitHub Desktop.
vimrc header for vim-plug
filetype plugin on
"*****************************************************************************
"" Vim-PLug core
"*****************************************************************************
if has('vim_starting')
set nocompatible " Be iMproved
endif
let g:vim_bootstrap_langs = "python"
let g:vim_bootstrap_editor = ""
" Required:
call plug#begin()
"*****************************************************************************
"" Plug install packages
"*****************************************************************************
Plug 'benmills/vimux'
Plug 'greghor/vim-pyShell'
Plug 'julienr/vim-cellmode'
call plug#end()
" Required:
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment