diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-26 19:40:27 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-26 19:40:27 -0500 |
commit | bcfa5591fea9de4097cf17b0946b27a8e909f272 (patch) | |
tree | 1c59d6ab5bed1fd1364db3ff284a5eb1d2b91e5e /kshrc | |
parent | 0d859c8d32b8ce7dc59623a388ca7a119644f65a (diff) | |
download | rcm-bcfa5591fea9de4097cf17b0946b27a8e909f272.tar.gz rcm-bcfa5591fea9de4097cf17b0946b27a8e909f272.tar.bz2 rcm-bcfa5591fea9de4097cf17b0946b27a8e909f272.zip |
KSHRC updates
Diffstat (limited to 'kshrc')
-rw-r--r-- | kshrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,17 +1,22 @@ export GPG_TTY=/dev/pts/0 +export HISTFILE="$HOME/.history" gpg-connect-agent updatestartuptty /bye >/dev/null alias grep="ugrep --exclude-dir=node-modules --exclude-dir=_build" alias e="$EDITOR" +alias sudo='doas' alias g="git" alias infols="inxi -S -c 0" alias de='eval "$(direnv export bash)"' alias f-commit="fossil commit && fossil git export" PS1='$(git branch 2> /dev/null | grep "^\*" | colrm 1 2 | sed -e "s/$/./")${PWD##*/} ' +set -o emacs alias jrnl='stitch -t :journal:' if [ -x "$(command -v opam)" ]; then eval $(opam env) fi +acpi +export TERM=xterm-256color eval "$(direnv export bash)" eval "$(zoxide init posix --hook prompt)" |