Last active
June 7, 2025 14:43
-
-
Save lachim005/c3175b962bc0219f82a841897d2913ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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