This commit is contained in:
2024-06-20 00:53:35 +01:00
parent 27e1adad33
commit 6a5c568486
4 changed files with 70 additions and 21 deletions

20
install.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# install wezterm config
ln -s "$HOME/dotfiles/.wezterm.lua" "$HOME/.wezterm.lua"
# install neovim config
if [ ! -d "$HOME/.config/nvim" ]; then
mkdir -p "$HOME/.config/nvim"
ln -s "$HOME/dotfiles/nvim" "$HOME/.config/nvim"
fi
# install starship config
ln -s "$HOME/dotfiles/starship.toml" "$HOME/.config/starship.toml"
# install goneovim config
mkdir -p "$HOME/.config/goneovim"
ln -s "$HOME/dotfiles/goneovim.toml" "$HOME/.config/goneovim/settings.toml"
# install aerospace config
ln -s "$HOME/dotfiles/aerospace.toml" "$HOME/.aerospace.toml"