-
Notifications
You must be signed in to change notification settings - Fork 1
/
.bash_profile
36 lines (25 loc) · 1 KB
/
.bash_profile
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
30
31
32
33
34
35
36
# .bashrc
export PS1="\[$(tput bold)\]\[\033[38;5;11m\]\w\[$(tput sgr0)\] \$(git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/')\n\[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;14m\]\\$\[$(tput sgr0)\] \[$(tput sgr0)\]"
# Node
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
# Golang
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:$HOME/go/bin
export PATH=$PATH:$HOME/Apps/flutter/bin
# Composer
export PATH=~/.config/composer/vendor/bin:$PATH
# Java
export CLASSPATH="$HOME/classpath/gson-2.8.6.jar":"${CLASSPATH}"
# Kubernetes
export KUBE_EDITOR="vim"
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
# Config
export CHROME_EXECUTABLE="brave-browser"
# Docker Aliases
alias msf="docker run -it --privileged --net=host metasploitframework/metasploit-framework"
# Qt5CT
export QT_QPA_PLATFORMTHEME=qt5ct