mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 20:35:40 +00:00
19 lines
262 B
Bash
19 lines
262 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Install command line tools
|
|
|
|
# Update cache
|
|
apt update
|
|
|
|
# Upgrade already installed packages
|
|
apt upgrade
|
|
|
|
# Install packages (this works on Ubuntu 20.04+)
|
|
apt install -y \
|
|
jq \
|
|
neovim \
|
|
ripgrep \
|
|
fzf \
|
|
direnv \
|
|
zsh
|