diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-11-04 09:37:40 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-11-04 09:37:40 -0800 |
| commit | 479bc6cc343a908ec38bc1e5f3b771897578a355 (patch) | |
| tree | b54699b3850a88b3e125cf24fc0be00f77fd2de1 /bashrc | |
| parent | 91a89d857624b426256afb7287718a832f26dcbe (diff) | |
user local path stuff
Diffstat (limited to 'bashrc')
| -rw-r--r-- | bashrc | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -96,10 +96,20 @@ if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi +if [ -d ~/.local/bin ]; then + export PATH=~/.local/bin:$PATH +fi + if [ -d ~/.mcabal/bin ]; then export PATH=~/.mcabal/bin:$PATH fi +if [ -d ~/.ghcup/bin ]; then + export PATH=~/.ghcup/bin:$PATH +fi + + + export WLC_REPEAT_RATE=35 export WLC_REPEAT_DELAY=210 export ALTERNATE_EDITOR="" |
