Compare commits

...

3 Commits

Author SHA1 Message Date
51ba8e5a9e Add $GOPATH/bin to PATH 2024-11-18 11:39:15 -06:00
1a1d0ebde5 Fix typo 2024-11-18 11:36:01 -06:00
0543dafb6b Add tools installation to justfile 2024-11-18 11:34:15 -06:00
2 changed files with 29 additions and 0 deletions

View File

@ -55,3 +55,29 @@ install-dust:
sudo cp -v "${filename}/dust" /usr/local/bin/
sudo chown root:root /usr/local/bin/dust
rm -rf "$filename" "${filename}.tar.gz"
go-tools:
go install golang.org/x/tools/gopls@latest
go install github.com/fatih/gomodifytags@latest
go install github.com/cweill/gotests/...@latest
go install github.com/x-motemen/gore/cmd/gore@latest
go install golang.org/x/tools/cmd/guru@latest
python-tools:
pipx install --include-deps ansible
pipx install black
pipx install pyflakes
pipx install isort
pipx install pipenv
pipx install nose
pipx install pytest
webdev-tools:
sudo npm install -g @catppuccin/inkcat
sudo npm install -g prettier
sudo npm install -g js-beautify
sudo npm install -g stylelint
sudo dnf install -y tidy
rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

View File

@ -95,6 +95,9 @@ export PATH="${HOME}/.local/bin:${PATH}"
# Add ~/bin to PATH
export PATH="${HOME}/bin:${PATH}"
# Add ~/go/bin to PATH
export PATH="${HOME}/go/bin:${PATH}"
# Automatically remove duplicates from these arrays
typeset -gU path cdpath manpath fpath