Compare commits

...

2 Commits

Author SHA1 Message Date
KemoNine a6f59831fc add basic setup script 2022-05-19 10:10:12 -04:00
KemoNine 7e4f2295e6 alias exa to ls 2022-05-19 10:10:00 -04:00
2 changed files with 25 additions and 0 deletions

24
_setup.sh Executable file
View File

@ -0,0 +1,24 @@
#!/bin/sh
PATH_PREFIX=`pwd`
rm -r ~/.config/htop
ln -s $PATH_PREFIX/config/htop ~/.config/htop
rm ~/.gitconfig
ln -s $PATH_PREFIX/gitconfig ~/.gitconfig
rm ~/.nanorc
ln -s $PATH_PREFIX/nanorc ~/.nanorc
rm ~/.p10k.zsh
ln -s $PATH_PREFIX/p10k.zsh ~/.p10k.zsh
rm ~/.tmux.conf
ln -s $PATH_PREFIX/tmux.conf ~/.tmux.conf
rm ~/.zshrc
ln -s $PATH_PREFIX/zshrc ~/.zshrc
echo "install 'exa fd bat tmux htop nano emacs zsh' if needed"
echo "copy restic.sh if desired/needed"

1
zshrc
View File

@ -68,6 +68,7 @@ export PATH=~/.local/bin:${PATH}
. $HOME/.asdf/asdf.sh
alias ls="exa"
alias docker="sudo docker"
alias podman="sudo podman"