feat: final-ish version

This commit is contained in:
Strix 2023-10-14 22:38:12 +02:00
parent 29282b5bdf
commit 11187dc11c
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

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
}