-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
51 lines (38 loc) · 1.81 KB
/
.bashrc
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Import colorscheme from 'wal' asynchronously
# & # Run the process in the background.
# ( ) # Hide shell job control messages.
# (cat ~/.cache/wal/sequences &)
# Alternative (blocks terminal for 0-3ms)
# cat ~/.cache/wal/sequences
PS1="[\[\033[32m\]\w]\[\033[0m\]\n\[\033[1;36m\]\h\[\033[1;33m\] >\[\033[0m\]"
# To add support for TTYs this line can be optionally added.
# source ~/.cache/wal/colors-tty.sh
export TERM="xterm-256color"
# export XDG_DATA_DIRS="$XDG_DATA_DIRS:$HOME/.local/bin"
# export PATH="$PATH:$XDG_DATA_DIRS"
export PATH="$PATH:/home/elvisoliveira/.local/bin"
# If ~/.inputrc doesn't exist yet: First include the original /etc/inputrc
# so it won't get overriden
if [ ! -a ~/.inputrc ]; then echo '$include /etc/inputrc' > ~/.inputrc; fi
# Add shell-option to ~/.inputrc to enable case-insensitive tab completion
echo 'set completion-ignore-case On' >> ~/.inputrc
bind '"\e[A": history-search-backward'
bind '"\e[B": history-search-forward'
# Android Dev
export ANDROID_HOME=/hdd2/Android/linux/
export ANDROID_SDK_ROOT=/hdd2/Android/linux/
# THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
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
# neofetch
# -- START ACTIVESTATE INSTALLATION
export PATH="/home/elvisoliveira/.komodoide/12.0/XRE/state/bin:$PATH"
# -- STOP ACTIVESTATE INSTALLATION
# -- START ACTIVESTATE DEFAULT RUNTIME ENVIRONMENT
export PATH="/home/elvisoliveira/.cache/activestate/bin:$PATH"
# -- STOP ACTIVESTATE DEFAULT RUNTIME ENVIRONMENT