This commit is contained in:
Acid
2025-12-11 17:46:34 -05:00
commit e2e6ebd024
18 changed files with 2674 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# Basic setup for vms
```
sudo packageManager install zsh neovim ranger
```
# installs oh my zsh
```
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
```
# zsh auto suggestions
```
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
```
# powerlevel 10k
```
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
```
# Unatended upgrades
```
sudo dpkg-reconfigure -plow unattended-upgrades
```