From 7d95e2dcf965665b665e48341bb1f01d83b20bb4 Mon Sep 17 00:00:00 2001 From: Riley Smith Date: Thu, 6 Jan 2022 00:21:26 -0800 Subject: [PATCH] add bashrc --- dot_bashrc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dot_bashrc diff --git a/dot_bashrc b/dot_bashrc new file mode 100644 index 0000000..19f555c --- /dev/null +++ b/dot_bashrc @@ -0,0 +1,20 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +# alias ls='ls --color=auto' +# PS1='[\u@\h \W]\$ ' + +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion +export SVDIR=/run/runit/service + +export EDITOR=nvim + +# BEGIN_KITTY_SHELL_INTEGRATION +if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi +# END_KITTY_SHELL_INTEGRATION