Skip to content

Instantly share code, notes, and snippets.

@greghor
Created September 26, 2019 09:45
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/dfbd763aa181f5acb1e8ae1a32e75d11 to your computer and use it in GitHub Desktop.
Save greghor/dfbd763aa181f5acb1e8ae1a32e75d11 to your computer and use it in GitHub Desktop.
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 = "" " nvim or vim
" 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