mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 08:41:36 +00:00
update docker desktop settings
This commit is contained in:
@ -32,13 +32,16 @@
|
||||
"space f f": "file_finder::Toggle",
|
||||
"space c a": "editor::ToggleCodeActions", // zed specific
|
||||
"space r n": "editor::Rename",
|
||||
"space g g": [
|
||||
"workspace::SendKeystrokes",
|
||||
": new center terminal enter lazygit enter"
|
||||
"space g l": [
|
||||
"task::Spawn",
|
||||
{ "task_name": "start lazygit", "reveal_target": "center" }
|
||||
],
|
||||
"space t x": ["workspace::SendKeystrokes", ": clist 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": [
|
||||
"workspace::SendKeystrokes",
|
||||
": revert selected hunks enter"
|
||||
@ -48,7 +51,9 @@
|
||||
": language selector: toggle enter"
|
||||
],
|
||||
"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": {
|
||||
"mode": "dark",
|
||||
"light": "One Light",
|
||||
"dark": "Catppuccin Mocha (Blur)"
|
||||
"dark": "Catppuccin Mocha"
|
||||
},
|
||||
"base_keymap": "VSCode",
|
||||
"buffer_font_family": "JetBrainsMono Nerd Font",
|
||||
@ -66,6 +66,11 @@
|
||||
"file_icons": true,
|
||||
"git_status": false
|
||||
},
|
||||
"git": {
|
||||
"inline_blame": {
|
||||
"enabled": false
|
||||
}
|
||||
},
|
||||
"file_scan_exclusions": [
|
||||
// "**/.git",
|
||||
"**/.svn",
|
||||
@ -76,6 +81,13 @@
|
||||
"**/.classpath",
|
||||
"**/.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",
|
||||
"ssh_connections": [
|
||||
{
|
||||
|
@ -114,10 +114,15 @@ if [[ $OSTYPE == "darwin"* ]]; then
|
||||
export PATH=/Volumes/SN/SDK/flutter/bin:$PATH
|
||||
# ollama
|
||||
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
|
||||
if [[ ":$FPATH:" != *":/Users/xfy/.zsh/completions:"* ]]; then export FPATH="/Users/xfy/.zsh/completions:$FPATH"; fi
|
||||
. "/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
|
||||
|
||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
|
Reference in New Issue
Block a user