mirror of
https://github.com/junegunn/vim-easy-align.git
synced 2025-11-08 09:53:51 -05:00
12 lines
204 B
Bash
Executable File
12 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $(dirname $BASH_SOURCE)
|
|
|
|
vim -Nu <(cat << EOF
|
|
syntax on
|
|
for dep in ['vader.vim', 'vim-repeat']
|
|
execute 'set rtp+=' . finddir(dep, expand('~/.vim').'/**')
|
|
endfor
|
|
set rtp+=..
|
|
EOF) +Vader*
|