Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/awk -f | |
BEGIN { | |
RS = "\r\n" | |
FS = "\t" | |
csi = "\033[" | |
reset = csi 0 "m" | |
red = csi 31 "m" | |
green = csi 32 "m" |
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
<application> | |
<component name="DefaultFont"> | |
<option name="FONT_SIZE" value="10" /> | |
<option name="FONT_FAMILY" value="Source Code Pro" /> | |
<option name="FONT_REGULAR_SUB_FAMILY" value="Regular" /> | |
<option name="FONT_BOLD_SUB_FAMILY" value="Bold" /> | |
<option name="LINE_SPACING" value="1.1" /> | |
</component> | |
<component name="EditorSettings"> | |
<option name="STRIP_TRAILING_SPACES" value="Whole" /> |
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
" === Basic functionality === | |
syntax on | |
set number | |
set colorcolumn=81 | |
set expandtab | |
set shiftwidth=2 | |
set splitright | |
set splitbelow | |
" Remove trailing whitespace |
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
[ | |
{ | |
"key": "shift+cmd+k", | |
"command": "-editor.action.deleteLines", | |
"when": "textInputFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+cmd+k", | |
"command": "workbench.action.toggleZenMode" | |
}, |