Skip to content

Instantly share code, notes, and snippets.

View leejy12's full-sized avatar

Junyoung Lee leejy12

  • College Station, TX
  • 01:40 (UTC -05:00)
View GitHub Profile
@leejy12
leejy12 / update-neovimnightly.ps1
Created February 9, 2026 16:43
PowerShell function to install the nightly build of Neovim.
function Update-NeoivmNightly {
nvim --version
$releaseURL = "https://github.com/neovim/neovim/releases/download/nightly";
if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") {
$nvimInstaller = "nvim-win64.msi"
} elseif ($env:PROCESSOR_ARCHITECTURE -eq "ARM64") {
$nvimInstaller = "nvim-win-arm64.msi"
}