21 lines
659 B
Plaintext
Raw Normal View History

2021-09-07 08:56:52 -07:00
#! /bin/bash
sudo_package_update
# This now installs a lot of language specific stuff from python, gradle, to go.
# Should consider pulling these into different recipes that are dependent on the environment
# that I wish to bootstrap. If not a dev environment, I can trim out some of this.
# Packages that are pretty much the same treatment or names in all systems
# Shells
packages="fish bash"
# Common shell utils
2025-01-16 12:49:20 -08:00
packages="$packages tmux htop curl wget pv jq mosh bash-completion ripgrep pipx fzf"
2021-09-07 08:56:52 -07:00
# Development tools
2022-04-29 16:51:12 -07:00
packages="$packages make neovim tig doxygen shellcheck ctags py3-pynvim yamllint black"
2021-09-07 08:56:52 -07:00
sudo_package "$packages"
pipx upgrade padio