diff options
| author | Jake Koroman <jake@jakekoroman.com> | 2026-07-06 21:15:08 -0400 |
|---|---|---|
| committer | Jake Koroman <jake@jakekoroman.com> | 2026-07-06 21:15:08 -0400 |
| commit | d0688539d929b9cfe999a37bad74da88b45adb03 (patch) | |
| tree | d511fa09e2dcfcba35184266edbd59e049a43c9b /.bashrc | |
| parent | 423ba7b084da25860dd7d8fe127ca9362f622d69 (diff) | |
Update bash stuff.
Diffstat (limited to '.bashrc')
| -rw-r--r-- | .bashrc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |
