Skip to content

Instantly share code, notes, and snippets.

@elzii
Created June 24, 2017 07:10
Show Gist options
  • Save elzii/43646c8295fc800f16939ce7e55984f6 to your computer and use it in GitHub Desktop.
Save elzii/43646c8295fc800f16939ce7e55984f6 to your computer and use it in GitHub Desktop.
if empty(glob('~/.nvim/autoload/plug.vim'))
silent !curl -fLo ~/.nvim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall
endif
call plug#begin('~/.config/nvim/plugged')
Plug 'chriskempson/vim-tomorrow-theme'
call plug#end()
syntax reset
set background=dark
colorscheme Tomorrow-Night
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment