Skip to content

Instantly share code, notes, and snippets.

View devdumpling's full-sized avatar

Devon Wells devdumpling

View GitHub Profile
@devdumpling
devdumpling / settings.json
Created February 6, 2025 12:09
[zed] per project config to enable deno
{
// https://github.com/zed-industries/zed/issues/10169
"lsp": {
"deno": {
"settings": {
"deno": {
"enable": true
}
}
}
@devdumpling
devdumpling / backup_and_push.sh
Created August 25, 2024 18:06
Sync zed config
#!/bin/bash
# This is a simple script to copy non tmp files from zed config to a repo you can use for storing your config.
# This is slightly modified from what I actually use, which stores a number of other config files that I share across machines.
# rsync is used instead of cp for flexibility
ZED_SOURCE_DIR="/Users/USER/.config/zed"
ZED_DEST_DIR="/Users/USER/PATH_TO_SYNC_REPO/.config/zed"
# absolute path to repo storing your config