Created
August 27, 2017 23:24
-
-
Save frankie-loves-jesus/f436f523f2e923c80f86bb9a39dc863d to your computer and use it in GitHub Desktop.
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
" Vera-based font family | |
" https://dejavu-fonts.github.io/ | |
Guifont DejaVu Sans Mono:h14 | |
" Start maximized | |
call GuiWindowMaximized(1) |
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
" 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