diff options
author | Vitor Gonçalves <vitorg@tilde.team> | 2023-05-21 06:34:37 -0300 |
---|---|---|
committer | Vitor Gonçalves <vitorg@tilde.team> | 2023-05-21 06:34:37 -0300 |
commit | 6a41699d952cb4116603539420353b4225d8c1d0 (patch) | |
tree | 4032b559d694454d49104cdcb3bf2542eedd3973 /dot_config/bash/rc | |
download | dots-6a41699d952cb4116603539420353b4225d8c1d0.tar.gz |
Initial commit
Diffstat (limited to 'dot_config/bash/rc')
-rw-r--r-- | dot_config/bash/rc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dot_config/bash/rc b/dot_config/bash/rc new file mode 100644 index 0000000..320f597 --- /dev/null +++ b/dot_config/bash/rc @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +shopt -s autocd +shopt -s histappend + +# pinentry and stuff +export GPG_TTY=$(tty) + +export EDITOR="nvim" VISUAL="nvim" + +source "$HOME/.config/bash/aliases" +source "$HOME/.config/bash/prompt" |