Created
December 11, 2017 12:59
-
-
Save paperbenni/0742cea81e5a86788c7a855c691d917f 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
call plug#begin('~/.local/share/nvim/plugged') | |
if has('nvim') | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | |
else | |
Plug 'Shougo/deoplete.nvim' | |
Plug 'roxma/nvim-yarp' | |
Plug 'roxma/vim-hug-neovim-rpc' | |
endif | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'dracula/vim' | |
Plug 'joshdick/onedark.vim' | |
call plug#end() | |
let g:deoplete#enable_at_startup = 1 | |
let g:airline_theme='onedark' | |
colorscheme onedark | |
set number | |
set numberwidth=4 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment