First Commit

This commit is contained in:
Errensuge
2017-01-12 15:26:11 +01:00
commit a066283107
9 changed files with 620 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
"
" Neovim Config File
"
set nocompatible
filetype off
if has('nvim')
let s:editor_root=expand("~/.config/nvim")
endif
set rtp+=~/.config/nvim/bundle/Vundle.vim
call vundle#begin()
call vundle#rc(s:editor_root . '/bundle')
Plugin 'VundleVim/Vundle.vim'
Plugin 'itchyny/lightline.vim'
call vundle#end()
filetype plugin indent on
" Lightline
let g:lightline = { 'colorscheme' : 'seoul256' }