diff options
author | Urbain Vaes <urbain@vaes.uk> | 2020-10-02 10:16:07 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2020-10-02 10:16:07 +0100 |
commit | 60496da375fa7355a0f01d0e3dd6bf8afc46ffe5 (patch) | |
tree | 6f1e3f2c8b9db8ecb5be24b25f5f25e5a2a0a78f | |
parent | 2ceab4a7b7f91087475ab2370b880e1759b72c85 (diff) |
Do not sign by default
-rw-r--r-- | git/.gitconfig | 4 | ||||
-rw-r--r-- | tmux/.tmux.conf | 2 | ||||
-rw-r--r-- | zsh/.zshenv | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/git/.gitconfig b/git/.gitconfig index 0e7df50..1169c34 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -4,7 +4,7 @@ [user] name = Urbain Vaes email = urbain@vaes.uk - signingKey = 716064C0 + ; signingKey = 716064C0 [init] templatedir = ~/.git_template [alias] @@ -13,7 +13,7 @@ [http] sslverify = false [commit] - gpgSign = true + ; gpgSign = true verbose = true [push] default = simple diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index c16febc..6259e47 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -22,6 +22,8 @@ set -g pane-border-status off # Alternative: top/bottom/... set -g pane-border-format "#{pane_current_command}" set -g status-justify centre # Center window list set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q' # Get | cursor nvim insert +set -sa terminal-overrides ',xterm*:RGB' +set -sa terminal-overrides ',rxvt*:RGB' set-hook -g session-created "if-shell '[ -n \""'$SSH_CONNECTION'"\" ]' 'set status-bg \"#aa4444\"' 'set status-bg \"green\"'" set-hook -g client-attached "if-shell '[ -n \""'$SSH_CONNECTION'"\" ]' 'set status-bg \"#aa4444\"' 'set status-bg \"green\"'" diff --git a/zsh/.zshenv b/zsh/.zshenv index 7917e82..7991bf1 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -16,5 +16,5 @@ fi [[ -f "$HOME/.pythonrc" ]] && export PYTHONSTARTUP="$HOME/.pythonrc" # Source guix profile -guix_profile=$HOME/.guix-env -[[ -f $guix_profile ]] && . $guix_profile +# guix_profile=$HOME/.guix-env +# [[ -f $guix_profile ]] && . $guix_profile |