Skip to content

Instantly share code, notes, and snippets.

@frankie-loves-jesus
Created August 27, 2017 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankie-loves-jesus/f436f523f2e923c80f86bb9a39dc863d to your computer and use it in GitHub Desktop.
Save frankie-loves-jesus/f436f523f2e923c80f86bb9a39dc863d to your computer and use it in GitHub Desktop.
" Vera-based font family
" https://dejavu-fonts.github.io/
Guifont DejaVu Sans Mono:h14
" Start maximized
call GuiWindowMaximized(1)
" Install vim-plug plugin manager
" https://github.com/junegunn/vim-plug#neovim
" https://git-scm.com/download/win
" --------------------------------------------------
" Install the below plugin(s) with `:PlugInstall`
call plug#begin('~\AppData\Local\nvim\plugz')
" Solarized color theme
" http://ethanschoonover.com/solarized
Plug 'https://github.com/icymind/NeoSolarized'
call plug#end()
" --------------------------------------------------
" Set theme if it's installed
if !empty('~\AppData\Local\nvim\plugz\NeoSolarized')
colorscheme NeoSolarized
set background=dark
endif
" --------------------------------------------------
" Show line numbers
set number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment