-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.bashrc
More file actions
29 lines (21 loc) · 724 Bytes
/
.bashrc
File metadata and controls
29 lines (21 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# ~/.bashrc
#
# set colors for directories when using ls
alias ls='ls --color=auto'
# fix discord becoming unresponsive during long calls
alias discord='discord --no-sandbox'
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# starship bash config
eval "$(starship init bash)"
### RANDOM COLOR SCRIPT ###
colorscript random
source "$HOME/.cargo/env"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
# Add directory to the $PATH variable
echo "PATH=$PATH:~/.config/rofi/bin" >> ~/.profile