Add Bash configuration with Oh My Bash

This commit is contained in:
Fabio Scotto di Santolo
2025-08-31 23:56:43 +02:00
parent 7b6ce305a5
commit 10734ba256
7 changed files with 250 additions and 0 deletions

6
bash/.profile.d/golang.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
if command -v go > /dev/null 2>&1; then
export GOPATH="$HOME/.local/share/Go"
export GOBIN="$GOPATH/bin"
fi