Skip to content

Instantly share code, notes, and snippets.

@bidyashish
Created November 14, 2025 19:27
Show Gist options
  • Select an option

  • Save bidyashish/07ac809da623e15dd8fa056aea4d4404 to your computer and use it in GitHub Desktop.

Select an option

Save bidyashish/07ac809da623e15dd8fa056aea4d4404 to your computer and use it in GitHub Desktop.
My ~/.config/fish/config.fish. Fish File
#1
if status is-interactive
# Commands to run in interactive sessions can go here
end
#2 Load starship
starship init fish | source
#3 NVM Node
set -gx NVM_DIR ~/.nvm
function nvm
bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv
end
# Added by LM Studio CLI (lms)
set -gx PATH $PATH /Users/ashish/.lmstudio/bin
# End of LM Studio CLI section
# bun
set --export BUN_INSTALL "$HOME/.bun"
set --export PATH $BUN_INSTALL/bin $PATH
# Android SDK Configuration
set -gx ANDROID_HOME $HOME/Library/Android/sdk
fish_add_path $ANDROID_HOME/emulator
fish_add_path $ANDROID_HOME/platform-tools
function kimi
set -x ANTHROPIC_BASE_URL https://api.moonshot.ai/anthropic
set -x ANTHROPIC_AUTH_TOKEN sk-x...
set -x ANTHROPIC_MODEL kimi-k2-thinking
set -x ANTHROPIC_SMALL_FAST_MODEL kimi-k2-thinking
claude --dangerously-skip-permissions $argv
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment