aboutsummaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-04-05 19:16:09 -0400
committertdro <tdro@users.noreply.github.com>2020-04-05 19:16:09 -0400
commit433a613e32dcae4041ca2ce4862ed1f1f4c17334 (patch)
treed70305227514d181358ec7235d56dd7a7a76afbf /.bash_profile
parentcf2633580599698bbae2448ea14f8de92a36de4f (diff)
downloaddotfiles-433a613e32dcae4041ca2ce4862ed1f1f4c17334.tar.gz
dotfiles-433a613e32dcae4041ca2ce4862ed1f1f4c17334.tar.bz2
dotfiles-433a613e32dcae4041ca2ce4862ed1f1f4c17334.zip
.bashrc: Move paths to profile
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile8
1 files changed, 8 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile
index 89a1484..5f85421 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -3,6 +3,11 @@
# auto login
[ -z "$DISPLAY" ] && [ "$(tty)" = '/dev/tty1' ] && exec startx >/dev/null 2>&1;
+# path exports
+export PATH="$PATH:$HOME/.config/composer/vendor/bin"
+export PATH="$PATH:$HOME/.node_modules/node_modules/.bin"
+export PATH="$PATH:$HOME/.local/bin"
+
# general exports
export EDITOR=vim
export TERMINAL=urxvt
@@ -21,3 +26,6 @@ export FZF_DEFAULT_OPTS="--color=fg:255,hl:9 \
# source frequently changed files
. /etc/profile.d/theme.sh
+
+# source fzm
+[ -f "$HOME/.config/fzf-marks/fzf-marks.plugin.bash" ] && . "$HOME/.config/fzf-marks/fzf-marks.plugin.bash"