Skip to content
View spartanatreyu's full-sized avatar
💭
The spice must flow and the stack must overflow
💭
The spice must flow and the stack must overflow
Block or Report

Block or report spartanatreyu

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Personal terminal config (wezterm) Personal terminal config (wezterm)
    1
    local wezterm = require 'wezterm'
    2
    local config = wezterm.config_builder()
    3
    
                  
    4
    -----------------------------------------
    5
    --          Terminal Controls          --
  2. Personal Window Management script (h... Personal Window Management script (hammerspoon)
    1
    --Hammerspoon config to replace Cinch & Size-up (Microsoft Windows style) window management for free
    2
    --Windows Vista/7's Areo Snap on MacOS
    3
    --By Jayden Pearse (spartanatreyu)
    4
    -------------------------------------------------------------------
    5
    --Options, feel free to edit these:
  3. Personal MacOS keyboard firmware ove... Personal MacOS keyboard firmware override, Karabiner-elements config to set Caps+IJKL to arrows
    1
    {
    2
        "global": {
    3
            "check_for_updates_on_startup": true,
    4
            "show_in_menu_bar": true,
    5
            "show_profile_name_in_menu_bar": false
  4. Personal Keyboard + QMK firmware Personal Keyboard + QMK firmware
    1
    Description: COLMAK-DH with programmer friendly shortcuts and QWERTY fallback layer
    2
    Keyboard (split + ortholinear): https://www.zsa.io/moonlander
    3
    QMK Firmware: https://configure.zsa.io/moonlander/layouts/Mvngb/latest/0
    4
    Printable cheatsheet: https://codepen.io/spartanatreyu/pen/XWBeyRd
    5
    Switches: Gazzew Boba U4 Silent Tactile (Clear)
  5. Personal vscode settings.json Personal vscode settings.json
    1
    {
    2
    	// Theme customisation
    3
    	"workbench.colorTheme": "Monokai",
    4
    	"editor.showFoldingControls": "always",
    5
    	"editor.cursorSurroundingLines": 5,
  6. Personal vscode snippet for ts Personal vscode snippet for ts
    1
    {
    2
    	// Place your snippets for typescript here. Each snippet is defined under a snippet name and has a prefix, body and 
    3
    	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
    4
    	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
    5
    	// same ids are connected.