Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ codespaces_setup(){
install_if_missing tmux bash -c 'sudo apt-get update -y && sudo apt-get install -y tmux'
install_if_missing bat sudo apt-get install -y bat
install_if_missing rg sudo apt-get install -y ripgrep
install_if_missing nvim sudo apt-get install -y neovim
codespaces_install_shellcheck
log_helpers "*** Codespaces setup done ***"
}
Expand All @@ -54,6 +55,7 @@ local_setup(){
install_if_missing tmux brew install tmux
install_if_missing bat brew install bat
install_if_missing rg brew install ripgrep
install_if_missing rg brew install neovim

Copilot AI Sep 29, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The binary name should be 'nvim' to match the neovim executable, not 'rg' which is already used for ripgrep on line 57.

Suggested change
install_if_missing rg brew install neovim
install_if_missing nvim brew install neovim

Copilot uses AI. Check for mistakes.
local_install_shellcheck
log_helpers "*** Local setup done ***"
}
Expand Down
Loading