diff options
author | Hunt <lizhunt@amazon.com> | 2025-06-07 17:23:25 -0700 |
---|---|---|
committer | Hunt <lizhunt@amazon.com> | 2025-06-07 17:23:25 -0700 |
commit | fe6a59ea558971a2c3e532e922b4fc4232bc1719 (patch) | |
tree | 0372373802692c54da133fb6448b7abb6dc522ce /dots/zed | |
parent | da1dbddd46cac345116488cd38d42d7502522465 (diff) | |
download | dotfiles-fe6a59ea558971a2c3e532e922b4fc4232bc1719.tar.gz dotfiles-fe6a59ea558971a2c3e532e922b4fc4232bc1719.zip |
Add emacs config
Diffstat (limited to 'dots/zed')
-rw-r--r-- | dots/zed/.config/zed/settings.json.j2 | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/dots/zed/.config/zed/settings.json.j2 b/dots/zed/.config/zed/settings.json.j2 index 0ec26ae..231dedf 100644 --- a/dots/zed/.config/zed/settings.json.j2 +++ b/dots/zed/.config/zed/settings.json.j2 @@ -4,10 +4,6 @@ "metrics": false, "diagnostics": false }, - "features": { - "copilot": false, - "edit_prediction_provider": "none" - }, // -- </telemetry> -- // -- <keys> -- @@ -16,18 +12,18 @@ // -- </keys> -- // -- <text> -- - "ui_font_size": 14, - "tab_size": 4, - "buffer_font_size": 14, - "ui_font_family": "Agave Nerd Font Mono", - "buffer_font_family": "Agave Nerd Font Mono", + "ui_font_size": {{ theme.zed.font.size }}, + "tab_size": {{ editorconfig.tab_width }}, + "buffer_font_size": {{ theme.zed.font.size }}, + "ui_font_family": "{{ theme.zed.font }}", + "buffer_font_family": "{{ theme.zed.font }}", // -- </text> -- // -- <theme> -- "theme": { "mode": "system", - "light": "Gruvbox Light Soft", - "dark": "Gruvbox Dark Soft" + "light": "{{ theme.zed.light_theme }}", + "dark": "{{ theme.zed.dark_theme }}" }, // -- </theme> -- @@ -113,9 +109,15 @@ "mcp-server-sequential-thinking": true }, // -- </extensions> -- + // -- <ai> -- - "edit_prediction_provider": "", + "show_completions_on_input": false, + "features": { + "copilot": false, + "edit_prediction_provider": "none", + }, // -- </ai> -- + {% if features.work_mode %} // -- <amzn_ai> -- "language_models": { |