blob: 3ed8df57873cddedfefa4a0bcd971354b1658f29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Setting PATH
export PATH=~/.cargo/bin:$PATH
export PATH=~/bin/:$PATH
export PATH="$HOME/gems/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
export PATH="$HOME/.local/share/gem/ruby/3.0.0/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
export PATH="/opt/pycharm-2021.3.3/bin:$PATH"
#export XKB_DEFAULT_OPTIONS=caps:escape
[[ -f ~/.bashrc ]] && . ~/.bashrc
# If running from tty1 start sway
[ "$(tty)" = "/dev/tty1" ] && exec sway
# perlbrew
source ~/perl5/perlbrew/etc/bashrc
|