Skip to content

Instantly share code, notes, and snippets.

View gitfool's full-sized avatar
💭
🍺

Sean Fausett gitfool

💭
🍺
View GitHub Profile
@gitfool
gitfool / keybindings.json
Created September 17, 2026 03:59
Visual Studio Code settings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+]",
"command": "editor.action.jumpToBracket",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+]",
"command": "editor.action.selectToBracket"
@gitfool
gitfool / patch.sh
Last active December 6, 2021 23:02
Patch Fira Code for Nerd Fonts
#!/bin/bash
git clone https://github.com/tonsky/FiraCode.git
git clone https://github.com/ryanoasis/nerd-fonts.git
version=6.2 && curl -fsSL https://github.com/tonsky/FiraCode/releases/download/$version/Fira_Code_v$version.zip -o FiraCodeBinaries.zip
rm -rf FiraCodeBinaries && unzip FiraCodeBinaries.zip -d FiraCodeBinaries && rm -f FiraCodeBinaries.zip
cp FiraCodeBinaries/ttf/FiraCode-Bold.ttf nerd-fonts/src/unpatched-fonts/FiraCode/Bold
cp FiraCodeBinaries/ttf/FiraCode-Light.ttf nerd-fonts/src/unpatched-fonts/FiraCode/Light
@gitfool
gitfool / .bashrc
Last active September 18, 2026 03:10
dotfiles
export HISTCONTROL=ignoreboth
export HISTSIZE=100000
export HISTFILESIZE=200000
export AWS_PAGER=
export BROWSER=wslview
export EDITOR=vim
if [ "$VSCODE_INJECTION" = "1" ]; then
export EDITOR="code --wait"
fi
@gitfool
gitfool / settings.json
Last active September 4, 2026 05:52
Windows Terminal settings
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema-preview",
"actions":
[
{
"command":
{
"action": "clearBuffer",
"clear": "screen"