next #1

Merged
strix merged 8 commits from next into main 2023-09-01 03:34:46 +02:00
Showing only changes of commit 33ee95006d - Show all commits

14
crates/20-vim/crate.sh Normal file
View file

@ -0,0 +1,14 @@
#!/bin/sh
describe="Install vim and it's stuff"
scripts="@distro @self"
apply() {
[ -e "$HOME/.vimrc" ] || ln files/.vimrc $HOME/.vimrc
[ -e "$HOME/.ideavimrc" ] || ln files/.ideavimrc $HOME/.ideavimrc
}
undo() {
unlink $HOME/.vimrc
unlink $HOME/.ideavimrc
}