Skip to content

Instantly share code, notes, and snippets.

@lachim005
Last active June 7, 2025 14:43
Show Gist options
  • Save lachim005/c3175b962bc0219f82a841897d2913ff to your computer and use it in GitHub Desktop.
Save lachim005/c3175b962bc0219f82a841897d2913ff to your computer and use it in GitHub Desktop.
Windows Registry Editor Version 5.00
;Use UTC (syncs time with linux on dualboot)
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=dword:00000001
;Shows the last active window on click when multiple instances are open
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"LastActiveClick"=dword:00000001
;Returns the old context menu in win11
[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}]
@=""
[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32]
@=""
;Return Windows 10 print dialog
[HKEY_CURRENT_USER\Software\Microsoft\Print\UnifiedPrintDialog]
"PreferLegacyPrintDialog"=dword:00000001
;Search stuff
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search]
"BingSearchEnabled"=dword:00000000
"AllowSearchToUseLocation"=dword:00000000
"CortanaConsent"=dword:00000000
;Open in nvim
[HKEY_CURRENT_USER\Software\Classes\*\shell\openWithNvim]
@="Open in Neovim"
"Icon"="\"C:\\Program Files\\Neovim\\bin\\nvim.ico\""
[HKEY_CURRENT_USER\Software\Classes\*\shell\openWithNvim\command]
@="\"C:\\Program Files\\Neovim\\bin\\nvim.exe\" \"%1\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment