Skip to content

Commit

Permalink
Avoid absolute paths in nvim config
Browse files Browse the repository at this point in the history
  • Loading branch information
indrekj committed Feb 13, 2019
1 parent e13c152 commit 1e428f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .config/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ set writebackup
"NeoBundle Scripts-----------------------------
if has('vim_starting')
" Required:
set runtimepath+=/home/indrek/.config/nvim/bundle/neobundle.vim/
set runtimepath+=~/.config/nvim/bundle/neobundle.vim/
endif

" Required:
call neobundle#begin(expand('/home/indrek/.config/nvim/bundle'))
call neobundle#begin(expand('~/.config/nvim/bundle'))

" Let NeoBundle manage NeoBundle
" Required:
Expand Down

0 comments on commit 1e428f3

Please sign in to comment.