SHA256
1
0
forked from pool/neovim
neovim/sysinit.vim
Martin Pluskal 64eacecdb2 Accepting request 660221 from home:mcepl:branches:editors
- Add to the system-wide configuration file extension of runtimepath by
  /usr/share/vim/site, so that neovim uses other Vim plugins installed
  from packages.
- Add /usr/share/vim/site tree of directories to be owned by neovim as
  well.

OBS-URL: https://build.opensuse.org/request/show/660221
OBS-URL: https://build.opensuse.org/package/show/editors/neovim?expand=0&rev=44
2018-12-20 14:46:57 +00:00

11 lines
259 B
VimL

" In order for neovim to use installed plugins shared with vim
set runtimepath+=/usr/share/vim/site
augroup Fedora
autocmd!
" RPM spec file template
autocmd BufNewFile *.spec silent! 0read /usr/share/nvim/template.spec
augroup END
" vim: et ts=2 sw=2