Created
September 26, 2019 09:45
-
-
Save greghor/dfbd763aa181f5acb1e8ae1a32e75d11 to your computer and use it in GitHub Desktop.
Revisions
-
greghor created this gist
Sep 26, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ 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