From d58246d29021156ce42b1973594d4a67c7b82088 Mon Sep 17 00:00:00 2001 From: "Eric D. Rohler" Date: Sat, 20 Oct 2018 07:50:19 -0400 Subject: [PATCH] update readme and bashrc --- README.md | 8 +++++++- bashrc | 7 +++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb8b9c7..e38781b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ # dotfiles -My dotfiles \ No newline at end of file +My dotfiles + + +## Symlinks +1. bashrc -> $HOME/.bashrc -> $HOME/.bash_profile +2. vimrc -> $HOME/.vimrc -> $HOME/.config/nvim/init.vim +3. tmux.conf -> $HOME/.tmux.conf diff --git a/bashrc b/bashrc index ce77b2d..4a95ff8 100644 --- a/bashrc +++ b/bashrc @@ -5,6 +5,9 @@ if [ -f /etc/bashrc ]; then . /etc/bashrc fi +PATH=$PATH:$HOME/.local/bin:$HOME/bin +export PATH + if [ -f `which powerline-daemon` ]; then powerline-daemon -q POWERLINE_BASH_CONTINUATION=1 @@ -47,5 +50,5 @@ export FZF_DEFAULT_COMMAND="rg --files" alias dnfupdate='sudo dnf update -y' alias src="cd /home/$USER/src/" -alias blogsource="cd /home/$USER/src/repos/edr/ericrohler_static/" -alias dotfilesource="cd /home/$USER/src/repos/edr/dotfiles/" +alias blogsrc="cd /home/$USER/src/repos/edr/ericrohler_static/" +alias dotfilesrc="cd /home/$USER/src/repos/edr/dotfiles/"