Compare commits

..

No commits in common. "0914da49cf3dcff878ca3a0aa2ff669fdd1ac8ab" and "fc1b46077709f023c477af3bb1ad13efb182769e" have entirely different histories.

3 changed files with 9 additions and 11 deletions

View File

@ -1,7 +1,9 @@
[user]
name = Wiktor Zykubek
email = dev@wzykubek.xyz
signingkey = 0xE2F941AEA250AFFC
name = wzykubek
email = wz-git@mailbox.org
signingkey = ~/.ssh/id_ed25519_sk_rk
[gpg]
format = ssh
[format]
pretty = oneline
[log]
@ -16,5 +18,3 @@
cmd = kitten diff $LOCAL $REMOTE
[difftool "kitty.gui"]
cmd = kitten diff $LOCAL $REMOTE
[commit]
gpgsign = true

View File

@ -11,5 +11,6 @@ Host alma
User cloud
Port 2222
Host *
IdentityFile ~/.ssh/id_rsa.pub
Host *
IdentityFile ~/.ssh/id_ed25519_sk_rk
IdentitiesOnly yes

View File

@ -33,7 +33,6 @@ command_not_found_handler() {
#: Aliases {{{
alias vi='nvim'
alias vim='nvim'
alias ssh='kitten ssh'
alias sudo='sudo '
@ -46,9 +45,7 @@ alias dotfiles='nvim +"cd $HOME/.dotfiles" +"NvimTreeFocus"'
export PATH="$PATH:.:$HOME/.local/bin/scripts/:$HOME/.local/bin/"
export EDITOR='nvim'
export GPG_TTY="$(tty)"
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent # I need to find better place for this line
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
#: }}}