Minimal and productivity-focused Zed editor configuration files.
- settings.json - Zed Editor Settings and Theme Configuration
- keymap.json - Custom Keybindings (Visual Studio Code Keymap Based)
dotfiles/
├── README.md
├── LICENSE
├── .gitignore
└── Zed/
├── settings.json
└── keymap.json
- Dark Mode: Gruvbox Dark Theme
- Light Mode: Gruvbox Light Theme
- Font: Geist Mono
- UI Font Size: 16px
- Buffer Font Size: 15px
- Line Height: 2.0
- Minimal UI (Tab Bar Hidden, ScrollBar Disabled)
- Visual Studio Code Keymap Based Keybindings
- Auto-Save (1 Second Delay)
- Format on Save Enabled
- Mouse Wheel Zoom Enabled
- GitHub Copilot CLI Support
- Claude ACP Support
| Shortcut | Command |
|---|---|
Ctrl + Shift + E |
Toggle Explorer/Right Dock |
Ctrl + Shift + B |
Toggle Terminal/Bottom Dock |
Ctrl + Shift + P |
Command Palette |
Ctrl + P |
Quick File Open |
# Clone the Dot Files Repo
git clone https://github.com/shermsql/dotfiles.git ~/dotfiles
# Navigate to Zed Config Directory
cd ~/.config/zed # Linux/macOS
# or
cd %APPDATA%\Zed # Windows
# Create Symbolic Links
ln -s ~/dotfiles/zed/settings.json settings.json
ln -s ~/dotfiles/zed/keymap.json keymap.jsonCopy the files from the zed/ folder directly to your Zed config directory:
- Linux/macOS:
~/.config/zed/ - Windows:
%APPDATA%\Zed\
- Theme: Dark mode by default with Gruvbox color scheme.
- Panel Settings: Project panel on the right, tab bar hidden.
- UI Elements: Tab bar, indent guides, and scrollbar disabled.
- Font: Increased line height for better readability.
- Dock Settings: Explorer on right, Terminal on bottom (starts closed).
Keybindings for fast navigation:
- Workspace docking controls.
- Quick command palette and file finder access.
- Minimal yet efficient bindings.
- Zed 0.130+ Versions
- Linux, macOS, Windows
Feel free to modify these files according to your preferences. Zed automatically reloads configuration changes.
MIT - See LICENSE file for details.