# Start X
[[ ! ${DISPLAY} && $(tty) = /dev/tty1 ]] && exec startx
-
-
## [Completion]
## Completion scripts setup. Remove the following line to uninstall
[ -f /home/dima/.config/.dart-cli-completion/bash-config.bash ] && . /home/dima/.config/.dart-cli-completion/bash-config.bash || true
LOCAL_BIN=${HOME}/.local/bin
GO_BIN=/usr/local/go/bin
+RUST_BIN=${HOME}/.cargo/bin
if [[ -d ${LOCAL_BIN} ]]; then
- export PATH=${GO_BIN}:${LOCAL_BIN}:${PATH}
+ export PATH=${RUST_BIN}:${GO_BIN}:${LOCAL_BIN}:${PATH}
fi