diff --git a/README.md b/README.md index 619cead..8a7e23c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ # 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. diff --git a/git_config/global_ignore b/git_config/global_ignore index d9615c6..5e37b85 100644 --- a/git_config/global_ignore +++ b/git_config/global_ignore @@ -1,2 +1,3 @@ .DS_Store .nova/ +.zed/ diff --git a/zed_config/keymap.json b/zed_config/keymap.json index 7ba19b9..8b111ec 100644 --- a/zed_config/keymap.json +++ b/zed_config/keymap.json @@ -9,7 +9,8 @@ "context": "Editor && mode == full", "bindings": { "cmd-shift-o": "file_finder::Toggle", - "cmd-p": "outline::Toggle" + "cmd-p": "outline::Toggle", + "cmd-r": "task::Spawn" } } ] diff --git a/zed_config/settings.json b/zed_config/settings.json index 80ba171..96d0dce 100644 --- a/zed_config/settings.json +++ b/zed_config/settings.json @@ -12,6 +12,7 @@ "metrics": false }, "assistant": { + "version": "1", "button": false, "enabled": false }, @@ -24,9 +25,13 @@ "chat_panel": { "button": false }, - "theme": "Xcode Default Light", - "ui_font_family": "Rec Mono Casual", - "ui_font_size": 15, + "theme": { + "mode": "system", + "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_size": 14, "terminal": { @@ -49,5 +54,8 @@ }, "project_panel": { "indent_size": 10 + }, + "file_types": { + "HTML": ["hbs", "njk"] } }