mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
Compare commits
5 Commits
079ec5177f
...
1822f82401
| Author | SHA1 | Date | |
|---|---|---|---|
|
1822f82401
|
|||
|
7c04e49858
|
|||
|
3bb36f8b32
|
|||
|
4756212c32
|
|||
|
de6bb30eae
|
@@ -53,11 +53,8 @@ compile = true
|
||||
"go:google.golang.org/protobuf/cmd/protoc-gen-go" = "latest"
|
||||
"npm:@github/copilot-language-server" = "latest"
|
||||
"npm:@mermaid-js/mermaid-cli" = "latest"
|
||||
"npm:@modelcontextprotocol/server-memory" = "latest"
|
||||
"npm:@modelcontextprotocol/server-sequential-thinking" = "latest"
|
||||
"npm:@openai/codex" = "latest"
|
||||
"npm:@prettier/plugin-php" = "latest"
|
||||
"npm:@upstash/context7-mcp" = "latest"
|
||||
"npm:dockerfile-language-server-nodejs" = "latest"
|
||||
"npm:eslint" = "latest"
|
||||
"npm:eslint-config-prettier" = "latest"
|
||||
@@ -75,7 +72,6 @@ compile = true
|
||||
"npm:typescript" = "latest"
|
||||
"npm:typescript-formatter" = "latest"
|
||||
"npm:typescript-language-server" = "latest"
|
||||
"npm:vibe-kanban" = "latest"
|
||||
"npm:vscode-css-languageserver-bin" = "latest"
|
||||
"npm:vscode-json-languageserver" = "latest"
|
||||
"npm:yaml-language-server" = "latest"
|
||||
@@ -120,7 +116,7 @@ helm = "latest"
|
||||
helmfile = "latest"
|
||||
hexyl = "latest"
|
||||
hivemind = "latest"
|
||||
hwatch = "0.3.18"
|
||||
hwatch = "latest"
|
||||
jq = "latest"
|
||||
jwt = "latest"
|
||||
jwtui = "latest"
|
||||
@@ -139,7 +135,7 @@ opentofu = "latest"
|
||||
pnpm = "latest"
|
||||
python = "latest"
|
||||
rclone = "latest"
|
||||
restish = "0.20.0"
|
||||
restish = "latest"
|
||||
ripgrep = "latest"
|
||||
ruby = "latest"
|
||||
rust = { version = "latest", components = "rust-analyzer,rust-src" }
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
.bundle
|
||||
.byebug_history
|
||||
.dir-locals.el
|
||||
.envrc
|
||||
.mise.*local.toml
|
||||
.mise.local.toml
|
||||
.projectile
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
#
|
||||
|
||||
if command-exists cursor-agent; then
|
||||
alias cu="cursor-agent"
|
||||
|
||||
setup-completions cursor-agent "$(command-path cursor-agent)" \
|
||||
cursor-agent shell-integration zsh
|
||||
fi
|
||||
|
||||
if command-exists cursor; then
|
||||
export EDITOR="cursor -w"
|
||||
alias cu="cursor"
|
||||
alias e="cursor -w"
|
||||
fi
|
||||
|
||||
3
zshenv
3
zshenv
@@ -383,6 +383,9 @@ path_prepend "$HOME/.orbstack/bin"
|
||||
# Google Cloud SDK setup
|
||||
source-if-exists "${HOMEBREW_PREFIX}/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc"
|
||||
|
||||
# Antigravity setup
|
||||
path_prepend "$HOME/.antigravity/antigravity/bin"
|
||||
|
||||
# Windsurf setup
|
||||
path_prepend "$HOME/.codeium/windsurf/bin"
|
||||
|
||||
|
||||
6
zshrc
6
zshrc
@@ -257,7 +257,8 @@ MISE_HOME="$HOME/.local/share/mise"
|
||||
export MISE_INSTALL_PATH="$HOME/.local/bin/mise"
|
||||
|
||||
if ! command-exists mise; then
|
||||
read -q 'REPLY?mise is not installed, install with `curl https://mise.run | sh`? [y/N]:' &&
|
||||
read -qr 'REPLY?mise is not installed,' \
|
||||
'install with "curl https://mise.run | sh"? [y/N]:' &&
|
||||
echo && curl https://mise.run | sh
|
||||
fi
|
||||
|
||||
@@ -275,7 +276,8 @@ fi
|
||||
# ==============================================================================
|
||||
|
||||
if ! command-exists starship && [ -f "$MISE_INSTALL_PATH" ]; then
|
||||
read -q 'REPLY?starship is not installed, install with `mise use -g starship`? [y/N]:' &&
|
||||
read -qr 'REPLY?starship is not installed,' \
|
||||
'install with "mise use -g starship"? [y/N]:' &&
|
||||
echo && "$MISE_INSTALL_PATH" use -g starship
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user