Skip to content

Instantly share code, notes, and snippets.

@paperbenni
Created December 11, 2017 12:59
Show Gist options
  • Save paperbenni/0742cea81e5a86788c7a855c691d917f to your computer and use it in GitHub Desktop.
Save paperbenni/0742cea81e5a86788c7a855c691d917f to your computer and use it in GitHub Desktop.
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