mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-04 21:28:21 -05:00
75636245a8
pyenv doesn't set path with `init -` anymore. Also set PATH only once in login shell.
11 lines
306 B
Bash
11 lines
306 B
Bash
#!/bin/bash
|
|
|
|
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|
|
|
|
# PATH
|
|
export PATH=$HOME/.local/bin:$HOME/.local/bin/fzf:$NODENV_ROOT/bin:$PYENV_ROOT/bin:$POETRY_HOME/bin:$CARGO_HOME/bin:$GOPATH/bin:$NPM_CONFIG_PREFIX/bin:$PATH
|
|
|
|
# if [[ "$(tty)" = "/dev/tty1" ]]; then
|
|
# exec startx $HOME/.config/X11/xinitrc
|
|
# fi
|