14 lines
215 B
Bash
14 lines
215 B
Bash
#!/bin/bash
|
|
|
|
#-- Install applications and software here, such as browsers or game launchers, etc.
|
|
|
|
#-- Update and Upgrade --#
|
|
apt update
|
|
apt upgrade -y
|
|
|
|
#-- Neovim --#
|
|
apt install neovim -y
|
|
|
|
apt install lua5.1 -y
|
|
|