1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Ryan Kes
6fe6334522 shell: disable throw-keyids in pass 2022-06-11 15:16:45 +02:00
Ryan Kes
344c010895 zsh: added local node_modules to path 2022-06-11 15:15:48 +02:00
Ryan Kes
fd747783a6 dwm: move xinit file to dwm directory 2022-04-30 19:37:14 +02:00
3 changed files with 11 additions and 2 deletions

View File

@ -56,6 +56,9 @@ set -g PASSWORD_STORE_ENABLE_EXTENSIONS "true"
# Make sure pass uses the proper directory
set -g PASSWORD_STORE_DIR ~/.local/share/pass
# Make sure pass ignores throw-keyids config
set -g PASSWORD_STORE_GPG_OPTS "--no-throw-keyids"
# Use alternative muhome
set -xg MU_HOME ~/.cache/mu
@ -114,7 +117,7 @@ abbr --add weechat "weechat -d ~/.config/weechat"
abbr --add tmux "tmux -f ~/.config/tmux/tmux.conf"
# pass
abbr --add pass "PASSWORD_STORE_DIR=$PASSWORD_STORE_DIR /usr/bin/pass"
abbr --add pass "PASSWORD_STORE_DIR=$PASSWORD_STORE_DIR PASSWORD_STORE_GPG_OPTS=$PASSWORD_STORE_GPG_OPTS /usr/bin/pass"
# pacman aliases
abbr --add pacrmorphans "sudo pacman -Rs (pacman -Qtdq)"

View File

@ -14,6 +14,9 @@ path_if_exists ~/.local/share/doom/bin
path_if_exists ~/.local/share/go/bin
path_if_exists ~/.local/share/cargo/bin
# Add local node_modules
export PATH="./node_modules/.bin/:$PATH"
# Set GPG TTY
export GPG_TTY="$(tty)"
@ -39,6 +42,9 @@ export PASSWORD_STORE_ENABLE_EXTENSIONS="true"
# Make sure pass uses the proper directory
export PASSWORD_STORE_DIR=~/.local/share/pass
# Make sure pass ignores throw-keyids config
export PASSWORD_STORE_GPG_OPTS="--no-throw-keyids"
# Use alternative muhome
export MU_HOME=~/.cache/mu