|
|
|
@ -1,15 +1,5 @@
|
|
|
|
|
#!/bin/sh |
|
|
|
|
|
|
|
|
|
vim() { |
|
|
|
|
echo "Installing VIM configuration..." |
|
|
|
|
ln -sf vim ~/.vim |
|
|
|
|
echo "Initializing plugins..." |
|
|
|
|
cd ~/.vim/ |
|
|
|
|
git submodule init |
|
|
|
|
git submodule update |
|
|
|
|
cd - |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
starship() { |
|
|
|
|
echo "Installing Starship configuration..." |
|
|
|
|
ln -sf $PWD/starship/starship.toml ~/.config/starship.toml |
|
|
|
@ -48,7 +38,16 @@ bat() {
|
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
vim |
|
|
|
|
nvim() { |
|
|
|
|
echo "Installing NeoVim configuration..." |
|
|
|
|
ln -sf ~/nvim ~/.config |
|
|
|
|
cd ~/.config/nvim |
|
|
|
|
git submodule init |
|
|
|
|
git submodule update |
|
|
|
|
cd - |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nvim |
|
|
|
|
starship |
|
|
|
|
kitty |
|
|
|
|
git |
|
|
|
|