Last active
June 11, 2019 20:56
-
-
Save cedrickring/c748f93adf6ae0e434560a4810e3fc89 to your computer and use it in GitHub Desktop.
This file contains 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
"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