Add config for Fedora
This commit is contained in:
parent
33a71984eb
commit
42d241c489
3 changed files with 24 additions and 0 deletions
|
@ -37,6 +37,7 @@ if [ -x /usr/bin/dircolors ]; then
|
||||||
alias egrep='egrep --color=auto'
|
alias egrep='egrep --color=auto'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
alias vim="nvim"
|
||||||
alias kssh='kitty +kitten ssh'
|
alias kssh='kitty +kitten ssh'
|
||||||
|
|
||||||
# enable programmable completion features
|
# enable programmable completion features
|
||||||
|
|
|
@ -25,3 +25,4 @@ fi
|
||||||
if [ -d "$HOME/.local/bin" ] ; then
|
if [ -d "$HOME/.local/bin" ] ; then
|
||||||
PATH="$HOME/.local/bin:$PATH"
|
PATH="$HOME/.local/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
|
22
fedora_bootstrap.sh
Normal file
22
fedora_bootstrap.sh
Normal 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
|
Loading…
Reference in a new issue