zed config changes

This commit is contained in:
2024-04-21 18:40:32 -04:00
parent e32e8d552c
commit 57d9a9302b
4 changed files with 33 additions and 5 deletions
+19 -1
View File
@@ -1,3 +1,21 @@
# dotfiles # dotfiles
My dotfiles for my macOS Terminal config. My dotfiles for macOS.
## components
- **git_config**:
- **micro_config**
- **misc_config**
- **zed_config**
- **zsh_config**
- **scripts**: various shell scripts I use regularly. They are aliased in `zsh_config`
## install
Clone this repo into your home directory and run the `symlink_dotfiles.zsh` script to create symlinks in the appropriate locations.
+1
View File
@@ -1,2 +1,3 @@
.DS_Store .DS_Store
.nova/ .nova/
.zed/
+2 -1
View File
@@ -9,7 +9,8 @@
"context": "Editor && mode == full", "context": "Editor && mode == full",
"bindings": { "bindings": {
"cmd-shift-o": "file_finder::Toggle", "cmd-shift-o": "file_finder::Toggle",
"cmd-p": "outline::Toggle" "cmd-p": "outline::Toggle",
"cmd-r": "task::Spawn"
} }
} }
] ]
+11 -3
View File
@@ -12,6 +12,7 @@
"metrics": false "metrics": false
}, },
"assistant": { "assistant": {
"version": "1",
"button": false, "button": false,
"enabled": false "enabled": false
}, },
@@ -24,9 +25,13 @@
"chat_panel": { "chat_panel": {
"button": false "button": false
}, },
"theme": "Xcode Default Light", "theme": {
"ui_font_family": "Rec Mono Casual", "mode": "system",
"ui_font_size": 15, "light": "Xcode Presentation Light",
"dark": "Gruvbox Dark"
},
"ui_font_family": "SF Pro Display",
"ui_font_size": 16,
"buffer_font_family": "Rec Mono Semicasual", "buffer_font_family": "Rec Mono Semicasual",
"buffer_font_size": 14, "buffer_font_size": 14,
"terminal": { "terminal": {
@@ -49,5 +54,8 @@
}, },
"project_panel": { "project_panel": {
"indent_size": 10 "indent_size": 10
},
"file_types": {
"HTML": ["hbs", "njk"]
} }
} }