Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ function pbcat
end

# Use ctrl+s to fzf search the current directory
fzf_configure_bindings --directory=\cs
if status is-interactive
fzf_configure_bindings --directory=\cs
end

# Search for all files with matching name in wiki
function wiki_file
Expand All @@ -195,7 +197,9 @@ function wiki_file
--preview-window="right:65%" \
--bind "enter:become(nvim $HOME/Dropbox/wiki/{})"
end
bind \cg wiki_file
if status is-interactive
bind \cg wiki_file
end

# Search for all files *containing* text
function wt
Expand Down
5 changes: 1 addition & 4 deletions ghostty/config
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ shell-integration = fish
theme = Catppuccin Frappe
command = /opt/homebrew/bin/fish

# Auto-copy Ghostty terminfo to SSH remote hosts (prevents "unknown terminal" errors)
auto-install-terminfo = true

# Desktop notification when a long-running command finishes
notify-on-command-finish = true
notify-on-command-finish = unfocused

# Let tmux handle all window/tab management
keybind = super+t=unbind
Expand Down
Loading