blob: 40a6b72f420acb9d0286be66190002dc74496caf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# vim: ft=sh
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"
|