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
| settings.scrollStepSize = 80; | |
| settings.richHintsForKeystroke = 200; | |
| settings.omnibarMaxResults = 20; | |
| settings.focusAfterClosed = 'left'; | |
| settings.interceptedErrors = ['*']; | |
| settings.cursorAtEndOfInput = false; | |
| /* | |
| clickablePat | |
| ignoredFrameHosts = ['']; | |
| clickableSelector = ''; |
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
| let num = 255 | |
| while num >= 0 | |
| exec 'hi col_'.num.' ctermbg='.num.' ctermfg=white' | |
| exec 'syn match col_'.num.' ".ctermbg='.num.'." containedIn=ALL' | |
| " call append(0, 'ctermbg='.num.':....') | |
| let num = num - 1 | |
| endwhile | |
| " call :so % | |
| " |
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
| git config --global alias.lg "log --color --graph --abbrev-commit -- --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'" | |
| git config --global alias.lg 'log --graph --decorate --abbrev-commit --oneline --all' | |
| git log --graph --decorate --abbrev-commit --oneline --all | |
| git log --graph --decorate --abbrev-commit --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all | |
| git log --graph --decorate --abbrev-commit --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n%C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all | |