Skip to content

Instantly share code, notes, and snippets.

@cedrickring
Last active June 11, 2019 20:56
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 cedrickring/c748f93adf6ae0e434560a4810e3fc89 to your computer and use it in GitHub Desktop.
Save cedrickring/c748f93adf6ae0e434560a4810e3fc89 to your computer and use it in GitHub Desktop.
"curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"
"Plugins"
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'
Plug 'drewtempelmeyer/palenight.vim'
Plug 'itchyny/lightline.vim'
call plug#end()
"Config"
set background=dark
set laststatus=2
colorscheme palenight
let g:lightline = {
\ 'colorscheme': 'wombat',
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment