Skip to content

Instantly share code, notes, and snippets.

View ranjian0's full-sized avatar
🎯
Focusing

Ian Karanja ranjian0

🎯
Focusing
  • Nairobi, Kenya
  • 09:41 (UTC +03:00)
View GitHub Profile
@ranjian0
ranjian0 / .vimrc
Created February 1, 2022 06:09 — 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
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'