diff --git a/.p10k.omp.json b/.p10k.omp.json index 7c42d06..f94a4ef 100644 --- a/.p10k.omp.json +++ b/.p10k.omp.json @@ -11,9 +11,6 @@ "alignment": "left", "segments": [ { - "properties": { - "cache_duration": "none" - }, "trailing_diamond": "\ue0b0", "template": " {{.Icon}} ", "foreground": "#FFF", @@ -22,8 +19,7 @@ "style": "diamond" }, { - "properties": { - "cache_duration": "none", + "options": { "style": "full" }, "trailing_diamond": "\ue0b0", @@ -40,8 +36,7 @@ "alignment": "right", "segments": [ { - "properties": { - "cache_duration": "none", + "options": { "time_format": "15:03" }, "leading_diamond": "\ue0b2", @@ -58,17 +53,20 @@ "alignment": "left", "segments": [ { - "properties": { - "always_enabled": true, - "cache_duration": "none" + "type": "shell", + "style": "diamond", + "trailing_diamond": "\ue0b0", + "foreground": "#597E7E" + }, + { + "options": { + "always_enabled": true }, "template": "❯ ", "foreground": "#5ACA00", "type": "status", "style": "plain", - "foreground_templates": [ - "{{ if gt .Code 0 }}#FF5252{{ end }}" - ] + "foreground_templates": ["{{ if gt .Code 0 }}#FF5252{{ end }}"] } ], "newline": true @@ -78,7 +76,7 @@ "alignment": "right", "segments": [ { - "properties": { + "options": { "fetch_package_manager": true, "pnpm_icon": "", "yarn_icon": "", @@ -87,15 +85,13 @@ "leading_diamond": "\ue0b2", "template": " 󰎙 {{ .Full }} {{if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ else }}{{ if .PackageManagerName }}({{ .PackageManagerName }}){{ end }}{{ end }}", "foreground": "#4D9D0F", - "foreground_templates": [ - "{{ if .Mismatch }}#FFEB3B{{ end }}" - ], + "foreground_templates": ["{{ if .Mismatch }}#FFEB3B{{ end }}"], "background": "236", "type": "node", "style": "diamond" }, { - "properties": { + "options": { "fetch_status": true, "source": "cli", "mapped_branches": { diff --git a/.var/app/dev.zed.Zed/config/zed/settings.json b/.var/app/dev.zed.Zed/config/zed/settings.json index 8c4be6f..71e08a4 100644 --- a/.var/app/dev.zed.Zed/config/zed/settings.json +++ b/.var/app/dev.zed.Zed/config/zed/settings.json @@ -8,20 +8,57 @@ // command palette (cmd-shift-p / ctrl-shift-p) { "cli_default_open_behavior": "existing_window", - "outline_panel": { - "dock": "left", - }, - "edit_predictions": { - "mode": "subtle", - "provider": "codestral", - }, - "disable_ai": false, - "vim_mode": false, + "telemetry": { "metrics": false, "diagnostics": false, }, + "disable_ai": false, + "show_edit_predictions": true, + "edit_predictions": { + "codestral": { + "model": "codestral-latest", + }, + "mode": "subtle", + "provider": "codestral", + }, + "agent_servers": { + "Mistral Vibe": { + "default_config_options": { + "mode": "plan", + "model": "devstral-small", + }, + "type": "custom", + "command": "/app/bin/host-spawn", + "args": ["/home/sublet/.local/bin/vibe-acp"], + "env": {}, + }, + }, + "agent": { + "sidebar_side": "right", + "dock": "right", + "favorite_models": [ + { + "provider": "mistral", + "model": "codestral-latest", + "enable_thinking": false, + }, + { + "provider": "mistral", + "model": "devstral-medium-latest", + "enable_thinking": false, + }, + ], + "button": true, + "default_profile": "ask", + "default_model": { + "provider": "mistral", + "model": "devstral-medium-latest", + }, + }, + + "vim_mode": false, "base_keymap": "VSCode", "theme": "One Dark - Darkened", @@ -40,7 +77,7 @@ "shell": { "with_arguments": { "program": "/app/bin/host-spawn", - "args": ["zsh"], + "args": [], }, }, "font_family": "FiraCode Nerd Font Mono", @@ -66,6 +103,10 @@ "enabled": true, }, + "outline_panel": { + "dock": "left", + }, + "project_panel": { "hide_hidden": true, "hide_root": true, @@ -74,26 +115,7 @@ "entry_spacing": "standard", }, - "agent": { - "sidebar_side": "right", - "dock": "right", - "favorite_models": [ - { - "provider": "mistral", - "model": "codestral-latest", - "enable_thinking": false, - }, - ], - "button": true, - "default_profile": "ask", - "default_model": { - "provider": "mistral", - "model": "codestral-latest", - }, - }, - "auto_signature_help": true, - "show_edit_predictions": false, "collaboration_panel": { "dock": "left", @@ -168,16 +190,4 @@ }, "hidden_files": ["**/node_modules"], - - "languages": { - "Vue.js": { - "show_edit_predictions": true, - }, - "TypeScript": { - "show_edit_predictions": true, - }, - "YAML": { - "format_on_save": "off", - }, - }, } diff --git a/.zshenv b/.zshenv index 477b97f..5746e10 100644 --- a/.zshenv +++ b/.zshenv @@ -1,11 +1,10 @@ -# PNPM -PNPM_BIN=$HOME/.local/share/pnpm/bin -LOCAL_BIN=$HOME/.local/bin +export PNPM_HOME=~/.local/share/pnpm -PATH=$PNPM_BIN:$LOCAL_BIN:$PATH +path=( + $PNPM_HOME/bin + ~/.local/bin + $path +) -# Cargo / Rust -. "$HOME/.cargo/env" - -# VSCode +. ~/.cargo/env [[ "$TERM_PROGRAM" == "vscode" ]] && . "$(code --locate-shell-integration-path zsh)"