Doors/scripts/install_min_fedora

27 lines
519 B
Text
Raw Normal View History

2023-03-01 19:48:19 -05:00
#!/bin/bash
cd
2023-03-01 19:55:17 -05:00
sudo dnf -y install \
2023-03-01 19:48:19 -05:00
sl \
btop \
neovim \
byobu \
zsh \
nnn \
kitty-terminfo \
mosh \
2023-03-01 20:34:47 -05:00
clang \
2023-03-01 19:48:19 -05:00
# Packer
if ! test -d ~/.local/share/nvim/site/pack/packer/start/packer.nvim; then
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
~/.local/share/nvim/site/pack/packer/start/packer.nvim
fi &&
# OhMyZsh
if ! test -d .config/zsh/ohmyzsh; then
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi &&
2023-03-01 20:04:21 -05:00
sudo usermod -s /bin/zsh $USER