summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-09-16 20:14:50 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-09-16 20:14:50 +0900
commit45caede6113ce570684cbcb87edbcc1e047a2e84 (patch)
tree4158b07993f2b5f9f3d0ef4b688dafcec9b09396
parent29c3f0feeb2f084c3161639ec30c46cf87b75c7c (diff)
modified .ssh/config, modified yazi/keymap-default.toml
-rw-r--r--global/.ssh/config2
-rw-r--r--mac/.config/yazi/keymap-default.toml6
2 files changed, 4 insertions, 4 deletions
diff --git a/global/.ssh/config b/global/.ssh/config
index c2e42f7..33f9699 100644
--- a/global/.ssh/config
+++ b/global/.ssh/config
@@ -10,6 +10,7 @@ Host dts-cowork
Port 23432
IdentitiesOnly yes
IdentityFile ~/.ssh/id_ed25519
+ LocalForward 33432 127.0.0.1:23432
Host private-k6-dev
HostName joonhoe.com
@@ -28,7 +29,6 @@ Host k6-ck
ServerAliveInterval 55
ServerAliveCountMax 5
-
Host pp
HostName 52.78.161.196
User ec2-user
diff --git a/mac/.config/yazi/keymap-default.toml b/mac/.config/yazi/keymap-default.toml
index ea5c7fd..23e8300 100644
--- a/mac/.config/yazi/keymap-default.toml
+++ b/mac/.config/yazi/keymap-default.toml
@@ -67,8 +67,8 @@ keymap = [
{ on = "<S-Enter>", run = "open --interactive", desc = "Open selected files interactively" },
{ on = "y", run = "yank", desc = "Yank selected files (copy)" },
{ on = "x", run = "yank --cut", desc = "Yank selected files (cut)" },
- { on = "p", run = "paste", desc = "Paste yanked files" },
- { on = "P", run = "paste --force", desc = "Paste yanked files (overwrite if the destination exists)" },
+ { on = [ "p", "P" ],run = "paste", desc = "Paste yanked files" },
+ { on = [ "P", "P" ],run = "paste --force", desc = "Paste yanked files (overwrite if the destination exists)" },
{ on = "-", run = "link", desc = "Symlink the absolute path of yanked files" },
{ on = "_", run = "link --relative", desc = "Symlink the relative path of yanked files" },
{ on = "<C-->", run = "hardlink", desc = "Hardlink yanked files" },
@@ -210,7 +210,7 @@ run = "plugin smart-filter"
desc = "Smart filter"
[[mgr.prepend_keymap]]
-on = "p"
+on = [ "p", "p" ]
run = "plugin smart-paste"
desc = "Paste into the hovered directory or CWD"