mirror of
https://github.com/mikkelsvartveit/dotfiles.git
synced 2025-12-22 11:12:39 +00:00
Add zoxide and fd
This commit is contained in:
parent
e5b88bbc45
commit
9a53d8fa76
3 changed files with 6 additions and 5 deletions
|
|
@ -41,7 +41,7 @@ echo "source ~/.config/ideavim/.ideavimrc" > .ideavimrc
|
||||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||||
|
|
||||||
# Install Homebrew packages
|
# 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
|
# Install pnpm and Node
|
||||||
curl -fsSL https://get.pnpm.io/install.sh | sh -
|
curl -fsSL https://get.pnpm.io/install.sh | sh -
|
||||||
|
|
|
||||||
|
|
@ -72,11 +72,8 @@ function dq
|
||||||
osascript -e 'quit app "OrbStack"'
|
osascript -e 'quit app "OrbStack"'
|
||||||
end
|
end
|
||||||
|
|
||||||
# Enable autojump
|
|
||||||
[ -f /opt/homebrew/share/autojump/autojump.fish ]; and source /opt/homebrew/share/autojump/autojump.fish
|
|
||||||
|
|
||||||
# Update PATH
|
# 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/.bun/bin" # Bun
|
||||||
fish_add_path "$HOME/.pyenv/bin" # pyenv
|
fish_add_path "$HOME/.pyenv/bin" # pyenv
|
||||||
fish_add_path "$HOME/Library/pnpm" # pnpm
|
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
|
# Added by OrbStack: command-line tools and integration
|
||||||
# This won't be added again if you remove it.
|
# This won't be added again if you remove it.
|
||||||
source ~/.orbstack/shell/init2.fish 2>/dev/null || :
|
source ~/.orbstack/shell/init2.fish 2>/dev/null || :
|
||||||
|
|
||||||
|
# Initialize zoxide
|
||||||
|
zoxide init fish --cmd j | source
|
||||||
|
|
|
||||||
|
|
@ -191,6 +191,7 @@ require("lazy").setup({
|
||||||
"folke/snacks.nvim",
|
"folke/snacks.nvim",
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
|
terminal_cmd = "~/.claude/local/claude", -- Use local installation
|
||||||
terminal = {
|
terminal = {
|
||||||
provider = "snacks",
|
provider = "snacks",
|
||||||
split_side = "right",
|
split_side = "right",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue