aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/bash/.bashrc2
-rw-r--r--shell/zsh/.zshrc2
2 files changed, 4 insertions, 0 deletions
diff --git a/shell/bash/.bashrc b/shell/bash/.bashrc
index 289d237..b921287 100644
--- a/shell/bash/.bashrc
+++ b/shell/bash/.bashrc
@@ -98,3 +98,5 @@ esac
98. "$HOME/.cargo/env" 98. "$HOME/.cargo/env"
99# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin 99# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin
100# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin 100# export PATH=$PATH:$(xdg-user-dir USER)/.local/bin
101
102export GPG_TTY=$(tty)
diff --git a/shell/zsh/.zshrc b/shell/zsh/.zshrc
index 0aaaf8f..f52f762 100644
--- a/shell/zsh/.zshrc
+++ b/shell/zsh/.zshrc
@@ -16,6 +16,7 @@ precmd_functions+=(update_prompt)
16update_prompt 16update_prompt
17 17
18HISTFILE="$XDG_CACHE_HOME"/zsh-histfile 18HISTFILE="$XDG_CACHE_HOME"/zsh-histfile
19GNUPGHOME="~/.gnupg/"
19HISTSIZE=2500 20HISTSIZE=2500
20SAVEHIST=2000 21SAVEHIST=2000
21setopt INC_APPEND_HISTORY 22setopt INC_APPEND_HISTORY
@@ -29,6 +30,7 @@ compinit
29setopt autocd 30setopt autocd
30eval "$(zoxide init zsh)" 31eval "$(zoxide init zsh)"
31 32
33export GPG_TTY=$(tty)
32export XDG_DATA_HOME="$HOME"/.local/share 34export XDG_DATA_HOME="$HOME"/.local/share
33export XDG_CONFIG_HOME="$HOME"/.config 35export XDG_CONFIG_HOME="$HOME"/.config
34export XDG_STATE_HOME="$HOME"/.local/state 36export XDG_STATE_HOME="$HOME"/.local/state