Compare commits

...

4 Commits

Author SHA1 Message Date
Jim Myhrberg
a954f2b588 feat(zshenv): add pnpm setup to environment configuration 2026-01-15 21:11:31 +00:00
Jim Myhrberg
4f831ccd2e feat(ruby): add 'steep' to global Ruby packages installation 2026-01-15 21:10:47 +00:00
Jim Myhrberg
b72042cd1f feat(mise/config): add 'gemini' dependency to configuration 2026-01-15 21:10:34 +00:00
Jim Myhrberg
75116ac623 chore(gitignore): add settings.local.json to ignore list 2026-01-15 21:09:45 +00:00
4 changed files with 7 additions and 0 deletions

View File

@@ -107,6 +107,7 @@ dust = "latest"
evans = "latest"
fd = "latest"
fzf = "latest"
gemini = "latest"
gh = "latest"
gitu = "latest"
go = "latest"

View File

@@ -2,6 +2,7 @@
.DS_Store
._zinit/*
.bin
.claude/settings.local.json
.bundle
.byebug_history
.dir-locals.el

View File

@@ -63,6 +63,7 @@ install_ruby_global_packages() {
ruby-lsp
ruby-lsp-rails
ruby-lsp-rspec
steep
syntax_tree
syntax_tree-haml
yard

4
zshenv
View File

@@ -354,6 +354,10 @@ fi
# Use custom tmux install if available
path_prepend "/opt/tmux/bin"
# pnpm setup
export PNPM_HOME="$HOME/.local/share/pnpm"
path_prepend "$PNPM_HOME"
# Rust setup
export RUSTUP_HOME="$HOME/.rustup"
export CARGO_HOME="$HOME/.cargo"