- OS: Windows 11 25H2
- Cursor: Bibata-Modern
- Shell: Nushell
- Text Editor: Zed
- Browser: Firefox / Chromium
Note
These dotfiles are modular, not automatic.
Created for personal use only.
Zed
| Shortcut | Action |
|---|---|
| Ctrl + B | Toggle left sidebar |
| Ctrl + E | Toggle file explorer |
| Ctrl + G | Toggle git panel |
| Ctrl + Alt + B | Toggle outline panel |
| Ctrl + Shift + M | Toggle problems panel |
| Shift + Esc | Toggle active window fullscreen |
| Ctrl + R | Open recent project tab |
| Ctrl + W | Close active tab |
| Ctrl + ` | Toggle terminal |
| Ctrl + P | Go to file |
| Ctrl + Shift + P | Command palette |
| Shortcut | Action |
|---|---|
| F12 / Alt + Click | Go to definition |
| Alt + F12 | Peek definition |
| Ctrl + F | Find in current file |
| Ctrl + Shift + F | Find in project |
| Ctrl + H | Find & replace (local) |
| Ctrl + T | Search symbols (project) |
| Ctrl + Shift + O | Search symbols (current file) |
| Ctrl + Shift + G | Go to line |
| Shortcut | Action |
|---|---|
| Ctrl + D | Select next match |
| Ctrl + Shift + L | Select all occurrences |
| Shift + ↑/↓/←/→ | Select text |
| Ctrl + Click | Add multi-cursor |
| Shift + Alt + F | Format document |
| Shift + Alt + ↑ / ↓ | Duplicate line up / down |
| Alt + ↑ / ↓ | Swap / move line up / down |
| Ctrl + Shift + K | Delete entire line |
| Ctrl + Enter | Insert line below |
| Ctrl + / / Ctrl + K + C | Toggle comment / un-comment |
| Shift + Alt + A | Toggle block comment |
| Ctrl + ← / → | Move cursor word-by-word |
| Ctrl + Backspace / Ctrl + Delete | Delete previous / next whole word |
| Ctrl + Space | Trigger suggestion |
| Ctrl + . | Trigger code action (quick fix) |
Firefox
- Navigate to your default profile folder:
about:profiles. - Apply the configuration: either replace existing files or drop in the new ones.
| Extension | Description |
|---|---|
| uBlock Origin | Block Ads & Tracking |
| Dark Reader | Force-dark theme |
- Blank page (
about:blank) for both homepage and new tabs. - Disable sponsored content, top sites, etc.
- Rounded, compact tabs with custom (dark) color-styling.
- Hidden unnecessary icons: tab sound, new tab icon, picture-in-picture, star, tracking, translations.
- Centered URL bar with custom font (JetBrainsMono) & removed borders, separators.
Terminal
# enhanced ls cat grep find
scoop install eza bat ripgrep fd
# optional
scoop install ffmpeg nano fzf gh 7zipEdit nushell config using notepad $nu.config-path:
# environment configuration
$env.config.show_banner = false
$env.PROMPT_COMMAND_RIGHT = ""
# find -> fd
def --wrapped find [...args] {
if ($in | is-not-empty) {
builtin find ...$args
} else {
fd ...$args
}
}
# ls -> eza
def --wrapped ls [...args] {
eza ...$args
}
# aliases
alias cat = bat --style=plain
alias grep = rg
© 2026 vmphase


