From 9a53d8fa7679dc63496752bd888724284d6c78b3 Mon Sep 17 00:00:00 2001 From: Mikkel Svartveit Date: Tue, 23 Sep 2025 15:43:52 +0200 Subject: [PATCH] Add zoxide and fd --- README.md | 2 +- fish/config.fish | 8 ++++---- nvim/lua/plugins.lua | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8d10ee4..a3ae4e1 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ echo "source ~/.config/ideavim/.ideavimrc" > .ideavimrc /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # Install Homebrew packages -brew install fish pyenv git neovim ripgrep autojump +brew install fish pyenv git neovim ripgrep zoxide fzf fd # Install pnpm and Node curl -fsSL https://get.pnpm.io/install.sh | sh - diff --git a/fish/config.fish b/fish/config.fish index d66aae9..9046c9f 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -72,11 +72,8 @@ function dq osascript -e 'quit app "OrbStack"' end -# Enable autojump -[ -f /opt/homebrew/share/autojump/autojump.fish ]; and source /opt/homebrew/share/autojump/autojump.fish - # Update PATH -fish_add_path "$HOME/.local/bin" # Lingua Franca +fish_add_path "$HOME/.local/bin" fish_add_path "$HOME/.bun/bin" # Bun fish_add_path "$HOME/.pyenv/bin" # pyenv fish_add_path "$HOME/Library/pnpm" # pnpm @@ -102,3 +99,6 @@ set --export PATH $BUN_INSTALL/bin $PATH # Added by OrbStack: command-line tools and integration # This won't be added again if you remove it. source ~/.orbstack/shell/init2.fish 2>/dev/null || : + +# Initialize zoxide +zoxide init fish --cmd j | source diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index fd9220a..8713c38 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -191,6 +191,7 @@ require("lazy").setup({ "folke/snacks.nvim", }, opts = { + terminal_cmd = "~/.claude/local/claude", -- Use local installation terminal = { provider = "snacks", split_side = "right",