Skip to content

Instantly share code, notes, and snippets.

@robquinn
Created October 25, 2019 17:07
Show Gist options
  • Save robquinn/90aaa1e97e54e8f771d8de4d90a9393a to your computer and use it in GitHub Desktop.
Save robquinn/90aaa1e97e54e8f771d8de4d90a9393a to your computer and use it in GitHub Desktop.
.vimrc
""""""""""
"vim plug"
""""""""""
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
endif
call plug#begin('~/.vim/plugged')
Plug 'junegunn/seoul256.vim'
Plug 'junegunn/goyo.vim'
Plug 'junegunn/limelight.vim'
call plug#end()
""""""""
"vundle"
""""""""
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Plugin 'sjl/badwolf'
call vundle#end() " required
filetype plugin indent on " required
""""""""
"custom"
""""""""
colo badwolf
set number
highlight LineNr ctermfg=grey
"highlight LineNr guifg=#050505
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment