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