mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
update docker desktop settings
This commit is contained in:
@ -32,13 +32,16 @@
|
|||||||
"space f f": "file_finder::Toggle",
|
"space f f": "file_finder::Toggle",
|
||||||
"space c a": "editor::ToggleCodeActions", // zed specific
|
"space c a": "editor::ToggleCodeActions", // zed specific
|
||||||
"space r n": "editor::Rename",
|
"space r n": "editor::Rename",
|
||||||
"space g g": [
|
"space g l": [
|
||||||
"workspace::SendKeystrokes",
|
"task::Spawn",
|
||||||
": new center terminal enter lazygit enter"
|
{ "task_name": "start lazygit", "reveal_target": "center" }
|
||||||
],
|
],
|
||||||
"space t x": ["workspace::SendKeystrokes", ": clist enter"],
|
"space t x": ["workspace::SendKeystrokes", ": clist enter"],
|
||||||
"space t t": ["workspace::SendKeystrokes", ": new center terminal enter"],
|
"space t t": ["workspace::SendKeystrokes", ": new center terminal enter"],
|
||||||
"space h p": ["workspace::SendKeystrokes", ": toggle hunk diff enter"],
|
"space h p": [
|
||||||
|
"workspace::SendKeystrokes",
|
||||||
|
": toggle selected diff hunks enter"
|
||||||
|
],
|
||||||
"space h r": [
|
"space h r": [
|
||||||
"workspace::SendKeystrokes",
|
"workspace::SendKeystrokes",
|
||||||
": revert selected hunks enter"
|
": revert selected hunks enter"
|
||||||
@ -48,7 +51,9 @@
|
|||||||
": language selector: toggle enter"
|
": language selector: toggle enter"
|
||||||
],
|
],
|
||||||
"alt-k": ["editor::MoveLineUp", { "display_lines": true }],
|
"alt-k": ["editor::MoveLineUp", { "display_lines": true }],
|
||||||
"alt-j": ["editor::MoveLineDown", { "display_lines": true }]
|
"alt-j": ["editor::MoveLineDown", { "display_lines": true }],
|
||||||
|
// lsp
|
||||||
|
"g r": ["workspace::SendKeystrokes", ": find all references enter"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
"theme": {
|
"theme": {
|
||||||
"mode": "dark",
|
"mode": "dark",
|
||||||
"light": "One Light",
|
"light": "One Light",
|
||||||
"dark": "Catppuccin Mocha (Blur)"
|
"dark": "Catppuccin Mocha"
|
||||||
},
|
},
|
||||||
"base_keymap": "VSCode",
|
"base_keymap": "VSCode",
|
||||||
"buffer_font_family": "JetBrainsMono Nerd Font",
|
"buffer_font_family": "JetBrainsMono Nerd Font",
|
||||||
@ -66,6 +66,11 @@
|
|||||||
"file_icons": true,
|
"file_icons": true,
|
||||||
"git_status": false
|
"git_status": false
|
||||||
},
|
},
|
||||||
|
"git": {
|
||||||
|
"inline_blame": {
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
},
|
||||||
"file_scan_exclusions": [
|
"file_scan_exclusions": [
|
||||||
// "**/.git",
|
// "**/.git",
|
||||||
"**/.svn",
|
"**/.svn",
|
||||||
@ -76,6 +81,13 @@
|
|||||||
"**/.classpath",
|
"**/.classpath",
|
||||||
"**/.settings"
|
"**/.settings"
|
||||||
],
|
],
|
||||||
|
"languages": {
|
||||||
|
"Python": {
|
||||||
|
"language_servers": ["ruff"]
|
||||||
|
// Or, if there are other language servers you want to use with Python
|
||||||
|
// "language_servers": ["pyright", "ruff"]
|
||||||
|
}
|
||||||
|
},
|
||||||
// "proxy": "http://127.0.0.1:10809",
|
// "proxy": "http://127.0.0.1:10809",
|
||||||
"ssh_connections": [
|
"ssh_connections": [
|
||||||
{
|
{
|
||||||
|
@ -114,10 +114,15 @@ if [[ $OSTYPE == "darwin"* ]]; then
|
|||||||
export PATH=/Volumes/SN/SDK/flutter/bin:$PATH
|
export PATH=/Volumes/SN/SDK/flutter/bin:$PATH
|
||||||
# ollama
|
# ollama
|
||||||
export OLLAMA_MODELS=/Volumes/SN/Ollama/models/
|
export OLLAMA_MODELS=/Volumes/SN/Ollama/models/
|
||||||
export OLLAMA_HOST=0.0.0.0:11434
|
export OLLAMA_HOST=localhost:11434
|
||||||
# Add deno completions to search path
|
# Add deno completions to search path
|
||||||
if [[ ":$FPATH:" != *":/Users/xfy/.zsh/completions:"* ]]; then export FPATH="/Users/xfy/.zsh/completions:$FPATH"; fi
|
if [[ ":$FPATH:" != *":/Users/xfy/.zsh/completions:"* ]]; then export FPATH="/Users/xfy/.zsh/completions:$FPATH"; fi
|
||||||
. "/Users/xfy/.deno/env"
|
. "/Users/xfy/.deno/env"
|
||||||
|
# The following lines have been added by Docker Desktop to enable Docker CLI completions.
|
||||||
|
fpath=(/Users/xfy/.docker/completions $fpath)
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit
|
||||||
|
# End of Docker CLI completions
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
Reference in New Issue
Block a user