Skip to content

Instantly share code, notes, and snippets.

@greghor
Created September 26, 2019 09:45
Show Gist options
  • Select an option

  • Save greghor/dfbd763aa181f5acb1e8ae1a32e75d11 to your computer and use it in GitHub Desktop.

Select an option

Save greghor/dfbd763aa181f5acb1e8ae1a32e75d11 to your computer and use it in GitHub Desktop.

Revisions

  1. greghor created this gist Sep 26, 2019.
    26 changes: 26 additions & 0 deletions vim-plug
    Original 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