33 lines
582 B
Markdown
33 lines
582 B
Markdown
# 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
|
|
```
|