~ruther/guix-local

ref: 33373e86225f60a7b20a33bb0fdf20f79e600901 guix-local/gnu/packages/aux-files/guix.vim -rw-r--r-- 331 bytes
33373e86 — Leo Famulari gnu: linux-libre 4.4: Update to 4.4.300. 4 years ago
                                                                                
1
2
3
4
5
6
7
" This appends all of the vim plugins to the end of Vim's runtimepath.
for directory in ["/run/current-system/profile", $HOME . "/.guix-profile", $GUIX_PROFILE, $GUIX_ENVIRONMENT]
    let vimplugins = directory . "/share/vim/vimfiles"
    if isdirectory(vimplugins)
        let &rtp = join([&rtp,vimplugins], ',')
    endif
endfor