2021-09-07 15:56:52 +00: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
|
|
|
|
packages="$packages tmux htop curl wget pv jq mosh bash-completion ripgrep"
|
|
|
|
# Development tools
|
2022-04-29 23:51:12 +00:00
|
|
|
packages="$packages make neovim tig doxygen shellcheck ctags py3-pynvim yamllint black"
|
2021-09-07 15:56:52 +00:00
|
|
|
|
|
|
|
sudo_package "$packages"
|
|
|
|
|
|
|
|
pip3 install --user padio
|