Skip to content
Open
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
3 changes: 2 additions & 1 deletion dev_env_setup_scripts/06-setup-neovim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ log "Installing Neovim and its configuration..."

# 1. Install Neovim (latest stable) via AppImage
log "Downloading latest Neovim AppImage..."
wget -O nvim.appimage https://github.com/neovim/neovim/releases/download/v0.11.4/nvim-linux-x86_64.appimage
wget -O nvim.appimage https://github.com/neovim/neovim/releases/download/v0.12.4/nvim-linux-x86_64.appimage
chmod u+x nvim.appimage
mkdir -p ~/.local/bin
mv nvim.appimage ~/.local/bin/nvim
Expand Down Expand Up @@ -174,6 +174,7 @@ EOF
cat > ~/.config/nvim/lua/plugins/treesitter.lua << 'EOF'
return {
"nvim-treesitter/nvim-treesitter",
branch = "master",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
Expand Down
Loading