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
15 changes: 12 additions & 3 deletions install/nvim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,28 @@ install_linux_deps() {
git \
ripgrep \
fd-find \
bat
bat \
clang \
libclang-dev

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
cargo install tree-sitter-cli
cargo install --locked tree-sitter-cli

fix_linux_cli_names
install_fzf
}

install_macos_deps() {
echo "Installing Neovim dependencies for macOS..."
brew_install curl git fd ripgrep bat tree-sitter-cli
brew_install curl \
git \
fd \
ripgrep \
bat \
llvm \
tree-sitter-cli

install_fzf
}

Expand Down
Loading