Skip to content

Commit

Permalink
2023-04-28 13:23:20
Browse files Browse the repository at this point in the history
  • Loading branch information
taupiqueur committed Apr 28, 2023
1 parent 07c71b1 commit e9123f5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .config/kak/kakrc
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ add-highlighter global/soft_wrap wrap -indent -marker '↪'
set-option global modelinefmt '%val{bufname} %val{cursor_line}:%val{cursor_char_column} {{context_info}} {{mode_info}} - %val{client}@%val{session}'

# Highlight various characters
add-highlighter global/U+2013 regex '' '0:green+f'
add-highlighter global/U+2014 regex '' '0:green+bf'
add-highlighter global/math-symbols regex '[−×]' '0:cyan+f'
add-highlighter global/characters regex '[–—−×]' '0:cyan+f'

# Commands ---------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
.ssh/id_ed25519_*
.ssh/known_hosts
.ssh/known_hosts.old
.ssh/control_masters
.config/weechat
.local/share/weechat
.cache/weechat
Expand Down
12 changes: 12 additions & 0 deletions .ssh/config
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
# https://openssh.com
# https://man.openbsd.org/ssh_config

Host *
IgnoreUnknown UseKeychain # macOS-only

# Authentication
UseKeychain yes
AddKeysToAgent yes

# SSH multiplexing
ControlMaster auto
ControlPath ~/.ssh/control_masters/%r@%h:%p
ControlPersist yes

Host host
HostName 192.168.64.1
User taupiqueur
Expand Down

0 comments on commit e9123f5

Please sign in to comment.