Skip to content

Instantly share code, notes, and snippets.

View helloworld12321's full-sized avatar

Joe Moonan Walbran helloworld12321

  • University of Minnesota Morris
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@helloworld12321
helloworld12321 / gopher
Last active December 18, 2022 00:43
A little gopher-menu-displayer program
#!/usr/bin/awk -f
BEGIN {
RS = "\r\n"
FS = "\t"
csi = "\033["
reset = csi 0 "m"
red = csi 31 "m"
green = csi 32 "m"
@helloworld12321
helloworld12321 / editor.xml
Created July 27, 2021 20:39
IntelliJ settings
<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" />
@helloworld12321
helloworld12321 / .vimrc
Last active August 19, 2022 01:41
RC files for Vim and Neovim
" === Basic functionality ===
syntax on
set number
set colorcolumn=81
set expandtab
set shiftwidth=2
set splitright
set splitbelow
" Remove trailing whitespace
@helloworld12321
helloworld12321 / keybindings.json
Last active March 30, 2023 01:03
VS Code Settings
[
{
"key": "shift+cmd+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+cmd+k",
"command": "workbench.action.toggleZenMode"
},