Skip to content

Instantly share code, notes, and snippets.

View gaardhus's full-sized avatar
🐙
Just another octopus floating in space

Tobias Gårdhus gaardhus

🐙
Just another octopus floating in space
View GitHub Profile
@oca159
oca159 / keymap.json
Last active December 7, 2025 19:45
zed keymap.json with same lazyvim keymaps
[
// Terminal
{
"context": "Workspace",
"bindings": {
"ctrl-/": "workspace::ToggleBottomDock"
}
},
// Window's navigation
{
@jsr-p
jsr-p / ghcp
Created June 21, 2024 11:17
Script to get link to github for current file (with optional line number) and either copied to clipboard or printed to stdout
#!/bin/bash
usage() {
echo "Usage: ghcp [--stdout] <file_path> [line_number]"
exit 1
}
# Initialize variables
STDOUT=false