12 lines
208 B
Bash
Executable file
12 lines
208 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
yay --noconfirm -Syu \
|
|
gvim \
|
|
vi-vim-symlink \
|
|
vim-wayland-clipboard-git \
|
|
;
|
|
|
|
. "../../../Common/Config/vim/install.sh";
|
|
|
|
popd > /dev/null;
|