mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
chore: Updates
This commit is contained in:
33
common/.config/zed/keymap.json
Normal file
33
common/.config/zed/keymap.json
Normal file
@@ -0,0 +1,33 @@
|
||||
// Zed keymap
|
||||
//
|
||||
// For information on binding keys, see the Zed
|
||||
// documentation: https://zed.dev/docs/key-bindings
|
||||
//
|
||||
// To see the default key bindings run `zed: open default keymap`
|
||||
// from the command palette.
|
||||
[
|
||||
{
|
||||
"context": "Workspace",
|
||||
"bindings": {
|
||||
"shift shift": "file_finder::Toggle"
|
||||
}
|
||||
},
|
||||
{
|
||||
"bindings": {
|
||||
"ctrl-k z": "workspace::ToggleZoom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Workspace",
|
||||
"bindings": {
|
||||
"ctrl ctrl": "command_palette::Toggle"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Editor",
|
||||
"bindings": {
|
||||
// "j k": ["workspace::SendKeystrokes", "escape"]
|
||||
"ctrl-alt-j": "journal::NewJournalEntry"
|
||||
}
|
||||
}
|
||||
]
|
||||
95
common/.config/zed/settings.json
Normal file
95
common/.config/zed/settings.json
Normal file
@@ -0,0 +1,95 @@
|
||||
// Zed settings
|
||||
//
|
||||
// For information on how to configure Zed, see the Zed
|
||||
// documentation: https://zed.dev/docs/configuring-zed
|
||||
//
|
||||
// To see all of Zed's default settings without changing your
|
||||
// custom settings, run `zed: open default settings` from the
|
||||
// command palette (cmd-shift-p / ctrl-shift-p)
|
||||
|
||||
{
|
||||
"telemetry": { "diagnostics": false, "metrics": false },
|
||||
"assistant": {
|
||||
"default_model": {
|
||||
"provider": "zed.dev",
|
||||
"model": "claude-3-5-sonnet-latest"
|
||||
},
|
||||
"version": "2"
|
||||
},
|
||||
"features": {
|
||||
"inline_completion_provider": "none"
|
||||
},
|
||||
|
||||
"base_keymap": "VSCode",
|
||||
"vim_mode": true,
|
||||
|
||||
"ui_font_size": 16,
|
||||
"buffer_font_size": 18,
|
||||
"buffer_font_family": "FuraCode Nerd Font",
|
||||
"buffer_line_height": { "custom": 1.5 },
|
||||
"tabs": {
|
||||
"file_icons": true,
|
||||
"git_status": true
|
||||
},
|
||||
"outline_panel": {
|
||||
"indent_size": 15,
|
||||
"scrollbar": {
|
||||
"show": "auto"
|
||||
}
|
||||
},
|
||||
"project_panel": {
|
||||
"indent_size": 15,
|
||||
"scrollbar": {
|
||||
"show": "auto"
|
||||
}
|
||||
},
|
||||
|
||||
"terminal": {
|
||||
"font_family": "FuraCode Nerd Font",
|
||||
"font_size": 18,
|
||||
"copy_on_select": true
|
||||
},
|
||||
|
||||
// "show_whitespaces": "boundary",
|
||||
"soft_wrap": "editor_width",
|
||||
"tab_size": 4,
|
||||
"unnecessary_code_fade": 0.5,
|
||||
|
||||
"git": {
|
||||
"git_gutter": "tracked_files",
|
||||
"gutter_debounce": null,
|
||||
"inline_blame": {
|
||||
"enabled": true,
|
||||
"delay_ms": 500
|
||||
}
|
||||
},
|
||||
|
||||
"inlay_hints": {
|
||||
"enabled": true
|
||||
},
|
||||
|
||||
"journal": {
|
||||
"path": "~/Code/",
|
||||
"hour_format": "hour24"
|
||||
},
|
||||
|
||||
"file_types": {
|
||||
"Shell": ["sh", "bash", "zsh"]
|
||||
},
|
||||
|
||||
// "lsp": {
|
||||
// "rust-analyzer": {
|
||||
// "initialization_options": {
|
||||
// "check": {
|
||||
// "command": "clippy"
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// },
|
||||
|
||||
"theme": {
|
||||
"mode": "system",
|
||||
"light": "One Light",
|
||||
"dark": "Github Dark Dimmed"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user