1 parent 03e3cd1 commit 5de3b20Copy full SHA for 5de3b20
2 files changed
ssh.sh
zsh/.zshrc
@@ -20,6 +20,7 @@ export PATH
20
# Environment variables
21
export LANG=en_US.UTF-8
22
export EDITOR="nvim"
23
+export MANPAGER="nvim +Man!"
24
export VISUAL="$EDITOR"
25
export GOPATH="$HOME/go"
26
export KUBECONFIG="$HOME/.kube/config"
@@ -252,7 +253,7 @@ devops() {
252
253
fi
254
}
255
-
256
+# Sesh session management
257
function ss() {
258
{
259
exec </dev/tty
@@ -276,6 +277,13 @@ cap() {
276
277
cat "$@" | pbcopy
278
279
280
+# Finder function: open current directory in Finder
281
+finder() {
282
+ open .
283
+}
284
+zle -N finder
285
+bindkey '^f' finder
286
+
287
# Navigation functions
288
cx() { cd "$@" && l; }
289
fcd() { cd "$(find . -type d -not -path '*/.*' | fzf)" && l; }
0 commit comments