This file contains 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 | |
; Taken from here: | |
; https://superuser.com/questions/1077223/windows-10-keyboard-repeat-rate-delay-keeps-changing | |
; Credits to Dale (https://superuser.com/users/150688/dale) | |
[HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response] | |
"AutoRepeatDelay"="200" | |
"AutoRepeatRate"="6" | |
"DelayBeforeAcceptance"="0" |
This file contains 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
#!/usr/bin/env python3 | |
color_groups = [ | |
[('red', None), ('green', None), ('yellow', None), ('magenta', None), | |
('cyan', None)], | |
[('black', 'light_red'), ('black', 'light_green'), | |
('black', 'light_yellow'), ('black', 'light_magenta'), | |
('black', 'light_cyan')] | |
] | |
cmd = ['git', 'blame', '--line-porcelain'] |