~ruther/guix-local

ref: d0a14dfad1d4fbe8a894f45dc1d6ccc72a9ec41f guix-local/gnu/packages/aux-files/guix.vim -rw-r--r-- 439 bytes
d0a14dfa — Wilko Meyer gnu: linux-libre 6.1: Update to 6.1.91. 2 years ago
                                                                                
1
2
3
4
5
6
7
8
" This appends all applicable vim paths to the end of packagepath.  Once we
" have told vim the packagepath vim will add it to the runtimepath for us.
for directory in ["/run/current-system/profile", $HOME . "/.guix-profile", $HOME ."/.guix-home/profile", $GUIX_PROFILE, $GUIX_ENVIRONMENT]
    let vimplugins = directory . "/share/vim/vimfiles"
    if isdirectory(vimplugins)
        let &pp = join([&pp,vimplugins], ',')
    endif
endfor