Add config for Fedora

This commit is contained in:
Nicole Tietz-Sokolskaya 2022-05-21 10:24:14 -04:00
parent 33a71984eb
commit 42d241c489
3 changed files with 24 additions and 0 deletions

View file

@ -37,6 +37,7 @@ if [ -x /usr/bin/dircolors ]; then
alias egrep='egrep --color=auto'
fi
alias vim="nvim"
alias kssh='kitty +kitten ssh'
# enable programmable completion features

View file

@ -25,3 +25,4 @@ fi
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
. "$HOME/.cargo/env"

22
fedora_bootstrap.sh Normal file
View file

@ -0,0 +1,22 @@
sudo dnf install htop neovim stow tmux podman cloc npm nodejs
mkdir -p ~/Code
cd ~/Code
if ! [ -a config ]; then
git clone https://github.com/ntietz/config.git
cd config
fi
mkdir -p ~/Code/vendor
cd ~/Code/vendor
if ! [ -a tla-bin ]; then
git clone https://github.com/pmer/tla-bin.git
fi
cd tla-bin
./download_or_update_tla.sh
sudo ./install.sh /usr/local
curl https://sh.rustup.rs -sSf | sh