Skip to content

Instantly share code, notes, and snippets.

@p1xelHer0
Created April 18, 2025 10:09
Show Gist options
  • Save p1xelHer0/527774a34d21ac1e2a0ca4bf147e0be7 to your computer and use it in GitHub Desktop.
Save p1xelHer0/527774a34d21ac1e2a0ca4bf147e0be7 to your computer and use it in GitHub Desktop.
Windows Registry Edit to add "Edit with Neovide" to the right click menu for files, directories and when click empty background in a directory
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Neovide]
@="Edit with Neovide"
"Icon"="\"C:\\Program Files\\Neovide\\neovide.exe\""
[HKEY_CLASSES_ROOT\*\shell\Neovide\command]
@="\"C:\\Program Files\\Neovide\\neovide.exe\" \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell\Neovide]
@="Open Neovide here"
"Icon"="\"C:\\Program Files\\Neovide\\neovide.exe\""
[HKEY_CLASSES_ROOT\Directory\shell\Neovide\command]
@="\"C:\\Program Files\\Neovide\\neovide.exe\" -- --cmd \"cd \"%1\"\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\Neovide]
@="&Open Neovide here"
"Icon"="\"C:\\Program Files\\Neovide\\neovide.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\Neovide\command]
@="\"C:\\Program Files\\Neovide\\neovide.exe\" -- --cmd \"cd \"%v\"\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment