Created
          October 25, 2019 17:07 
        
      - 
      
 - 
        
Save robquinn/90aaa1e97e54e8f771d8de4d90a9393a to your computer and use it in GitHub Desktop.  
    .vimrc
  
        
  
    
      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 characters
    
  
  
    
  | """""""""" | |
| "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