Skip to content

Instantly share code, notes, and snippets.

View kshg9's full-sized avatar
🎯
Focusing

EternalChocoTruffle kshg9

🎯
Focusing
View GitHub Profile
@kshg9
kshg9 / .gitconfig-ref
Last active August 3, 2025 07:29
Useful git aliases
# Customize Colors
[color "status"]
added = yellow
changed = green
untracked = cyan
[alias]
st = status -s
cl = clone
-- vim: tabstop=2 shiftwidth=2 expandtab
-- We almost always start by importing the wezterm module
local wezterm = require 'wezterm'
-- Define a lua table to hold _our_ module's functions
local module = {}
-- Returns a bool based on whether the host operating system's
-- appearance is light or dark.
function module.is_dark()
@kshg9
kshg9 / keybindings.json
Last active September 26, 2025 18:38
vscode config
// Place your key bindings in this file to override the defaults
[
// 1. If sidebar is not visible, open and focus the explorer view.
{
"key": "ctrl+e",
"command": "workbench.explorer.fileView.focus",
"when": "!sideBarVisible" // More general than explorerViewletVisible
},
// 2. If sidebar is visible BUT NOT focused, focus it.
{