-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
aminedjeghri
committed
Nov 18, 2024
1 parent
ad122fc
commit 05e86a9
Showing
5 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Zed keymap | ||
// | ||
// For information on binding keys, see the Zed | ||
// documentation: https://zed.dev/docs/key-bindings | ||
// | ||
// To see the default key bindings run `zed: open default keymap` | ||
// from the command palette. | ||
[ | ||
{ | ||
"context": "Workspace", | ||
"bindings": { | ||
// "shift shift": "file_finder::Toggle" | ||
} | ||
}, | ||
{ | ||
"context": "Editor", | ||
"bindings": { | ||
// "j k": ["workspace::SendKeystrokes", "escape"] | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Zed settings | ||
// | ||
// For information on how to configure Zed, see the Zed | ||
// documentation: https://zed.dev/docs/configuring-zed | ||
// | ||
// To see all of Zed's default settings without changing your | ||
// custom settings, run `zed: open default settings` from the | ||
// command palette (cmd-shift-p / ctrl-shift-p) | ||
{ | ||
"telemetry": { | ||
"diagnostics": false, | ||
"metrics": false | ||
}, | ||
"ui_font_size": 16, | ||
"buffer_font_size": 13, | ||
"buffer_font_family": "JetBrainsMono Nerd Font", | ||
"base_keymap": "JetBrains", | ||
"theme": { | ||
"mode": "system", | ||
"light": "One Dark - Darkened", | ||
"dark": "Night Owl Dark" | ||
} | ||
} |