commit aaf2180eaf5037e05a0e216a56bc603af982e4b0
parent d93289e69064cf3b58a2c58c60bfbd0a609d948a
Author: Chris Bracken <chris@bracken.jp>
Date: Wed, 17 Apr 2024 20:49:56 -0700
Add .config/zed
Diffstat:
2 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/.config/zed/.gitignore b/.config/zed/.gitignore
@@ -0,0 +1,3 @@
+.tmp*
+conversations/**
+embeddings/**
diff --git a/.config/zed/settings.json b/.config/zed/settings.json
@@ -0,0 +1,26 @@
+// 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 the `open default settings` command
+// from the command palette or from `Zed` application menu.
+{
+ "theme": "Ayu Mirage",
+ "ui_font_size": 15,
+ "buffer_font_size": 15,
+ "buffer_font_features": {
+ "calt": false
+ },
+ "vim": {
+ // "always": use system clipboard
+ // "never": don't use system clipboard
+ // "on_yank": use system clipboard for yank operations
+ "use_system_clipboard": "always",
+ // Lets `f` and `t` motions extend across multiple lines
+ "use_multiline_find": true
+ },
+ // Whether to enable vim modes and key bindings
+ "vim_mode": true
+}