summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc7
1 files changed, 5 insertions, 2 deletions
diff --git a/.bashrc b/.bashrc
index 7e9bb3e..722db7a 100644
--- a/.bashrc
+++ b/.bashrc
@@ -9,8 +9,8 @@ alias ll="ls -la"
alias j="jobs"
alias e="$EDITOR"
alias ee="$SUDO $EDITOR"
-alias nt="$BROWSER --new-tab"
-alias nw="$BROWSER --new-window"
+alias nt="$WEB_BROWSER --new-tab"
+alias nw="$WEB_BROWSER --new-window"
alias cp="cp -iv"
alias mv="mv -iv"
alias rm="rm -vI"
@@ -29,8 +29,11 @@ alias make="make -j$(nproc)"
# Export 'SHELL' to child processes. Programs such as 'screen'
# honor it and otherwise use /bin/sh.
export SHELL
+export HISTFILE=$HOME/.bash_history
export HISTSIZE=5000
+set -o noclobber
+
[ -f /etc/bash/bashrc ] && source /etc/bash/bashrc
complete -F _command doas