Skip to content

Instantly share code, notes, and snippets.

@xeno14
Last active August 29, 2015 14:27
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 xeno14/7e5047db42825b1166d7 to your computer and use it in GitHub Desktop.
Save xeno14/7e5047db42825b1166d7 to your computer and use it in GitHub Desktop.
minimized nvimrc with lightline
"----------------------------------------------------
" appearance
"----------------------------------------------------
"
syntax on
set laststatus=2
set t_Co=256
" colorscheme desert
"----------------------------------------------------
" NeoBundle
"----------------------------------------------------
let g:neobundle_default_git_protocol='https'
if has('vim_starting')
if &compatible
set nocompatible " Be iMproved
endif
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
call neobundle#begin(expand('~/.vim/bundle/'))
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'itchyny/lightline.vim'
" NeoBundle 'Shougo/deoplete.nvim'
call neobundle#end()
filetype plugin indent on
NeoBundleCheck
"----------------------------------------------------
" lightline
"----------------------------------------------------
let g:lightline = {
\ 'colorscheme': 'wombat',
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment