Skip to content

Instantly share code, notes, and snippets.

View richardlthomas's full-sized avatar

Rick Thomas richardlthomas

View GitHub Profile
@richardlthomas
richardlthomas / .vimrc
Created May 8, 2020 01:56 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
"autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
let need_to_install_plugins = 1
endif
call plug#begin()