diff --git a/gpg-tui/gpg-tui.toml b/gpg-tui/gpg-tui.toml new file mode 100644 index 0000000..91f2f73 --- /dev/null +++ b/gpg-tui/gpg-tui.toml @@ -0,0 +1,32 @@ +[general] + splash = false + tick_rate = 250 + color = "gray" + style = "colored" + file_explorer = "xplr" + detail_level = "minimum" + # log_file = "test" + # key_bindings = [ + # { keys = [ "?" ], command = ":help" }, + # { keys = [ "o" ], command = ":options" }, + # { keys = [ "n" ], command = ":normal" }, + # { keys = [ "v" ], command = ":visual" }, + # { keys = [ "c" ], command = ":copy" }, + # { keys = [ "p", "C-v" ], command = ":paste" }, + # { keys = [ "x" ], command = ":export" }, + # { keys = [ "s" ], command = ":set prompt :sign" }, + # { keys = [ "e" ], command = ":set prompt :edit" }, + # { keys = [ "i" ], command = ":set prompt :import"}, + # { keys = [ "f" ], command = ":set prompt :receive" }, + # { keys = [ "u" ], command = ":set prompt :send" }, + # { keys = [ "g" ], command = ":generate" }, + # { keys = [ "d", "backspace" ], command = ":delete" }, + # { keys = [ "C-r" ], command = ":refresh" }, + # ] + +[gpg] + armor = false + homedir = "~/.gnupg" + outdir = "~/.gnupg/out" + # outfile = "{type}_{query}.{ext}" + # default_key = "0xA1B2C3XY" diff --git a/zsh/config/.zshenv b/zsh/config/.zshenv index f82872d..264d4da 100755 --- a/zsh/config/.zshenv +++ b/zsh/config/.zshenv @@ -52,9 +52,6 @@ export SKELETONDIR="$DOTFILES/skeleton" export ANSIBLE_GEN_DIR="$GHREPOS/ansible/ansible-gen-playbook" export ANSIBLE_MACOS_PLAYBOOK_DIR="$GHREPOS/ansible/ansible-macos-playbook" export SITES="$GHREPOS/sites" -export PASSWORD_STORE_DIR="$XDG_DATA_HOME/password-store" -export PASSWORD_STORE_GENERATED_LENGTH=40 - # NPM export NPM_CONFIG_CACHE="$HOME/.local/npm" @@ -92,3 +89,10 @@ export DEFAULT_VAULT_PASSWORD_FILE="$XDG_DATA_HOME/ansible/.vaultpwd" # Tmux-Sessionator path. export TMUX_SESSIONATOR_PATH="$HOME:$SCRIPTS:$LOCAL_REPOS:$REPOS:$GH_REPOS" +# Password-store +export PASSWORD_STORE_DIR="$XDG_DATA_HOME/password-store" +export PASSWORD_STORE_GENERATED_LENGTH=40 + +# GPG-TUI +export GPG_TUI_CONFIG="$XDG_CONFIG_HOME/gpg-tui/gpg-tui.toml" +