Last active
July 4, 2021 07:01
-
-
Save chrishantha/33bd2796570a3bf1eaa7 to your computer and use it in GitHub Desktop.
My .bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set dircolors | |
# https://github.com/microsoft/WSL/issues/2343 | |
LS_COLORS=$LS_COLORS':tw=01;36' | |
LS_COLORS=$LS_COLORS':ow=01;36' | |
export LS_COLORS | |
export JAVA_HOME=/usr/lib/jvm/jdk8u275-b01 | |
export PATH=$PATH:$JAVA_HOME/bin | |
export M2_HOME=/opt/isuru/apache-maven-3.6.3 | |
export M2=$M2_HOME/bin | |
export PATH=$PATH:$M2 | |
export MAVEN_OPTS="-Xms512m -Xmx1536m -XX:ReservedCodeCacheSize=256m" | |
export GRADLE_HOME=/opt/isuru/gradle/gradle-6.7.1 | |
export PATH=$PATH:$GRADLE_HOME/bin | |
export GPGKEY=2D09CC5E | |
export GNUPGHOME=~/gpgkeys | |
export GPG_TTY=$(tty) | |
export FLAMEGRAPH_DIR=~/projects/git-projects/FlameGraph | |
export PATH=$PATH:$FLAMEGRAPH_DIR | |
export PATH=~/.local/bin:$PATH | |
#Powerline | |
# Limit this to Windows Terminal | |
if [ -n "${WT_PROFILE_ID}" ]; then | |
eval "$(oh-my-posh --init --shell bash --config ~/.poshthemes/powerline-isuru.omp.json)" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment