diff --git a/ghostty/config b/ghostty/config index b56471a..793f638 100644 --- a/ghostty/config +++ b/ghostty/config @@ -9,7 +9,7 @@ font-size = 13 window-padding-x = 10 window-padding-y = 10 macos-option-as-alt = true -background-opacity = 0.9 +background-opacity = 1.0 # Basic behavior shell-integration = "detect" diff --git a/vscode/settings.json b/vscode/settings.json index 3c370a1..9b49c7f 100644 --- a/vscode/settings.json +++ b/vscode/settings.json @@ -8,7 +8,7 @@ "editor.minimap.enabled": false, "files.autoSave": "onFocusChange", "window.zoomLevel": 1, - "workbench.colorTheme": "One Monokai", + "workbench.colorTheme": "Solarized Dark", "workbench.settings.editor": "json", //-------------------------------------------------- @@ -121,7 +121,6 @@ "amp.git.commit.coauthor.enabled": false, "amp.git.commit.ampThread.enabled": false, - "[dockercompose]": { "editor.insertSpaces": true, "editor.tabSize": 2, @@ -133,7 +132,16 @@ }, "editor.defaultFormatter": "redhat.vscode-yaml" }, + + "[github-actions-workflow]": { "editor.defaultFormatter": "redhat.vscode-yaml" - } + }, + + //-------------------------------------------------- + // Zig Configuration + //-------------------------------------------------- + "zig.path": "${workspaceFolder}/bin/zig", + "zig.zls.warnStyle": true, + "git.confirmSync": false } diff --git a/zsh/main.zsh b/zsh/main.zsh index e1f4f46..b1efd8a 100644 --- a/zsh/main.zsh +++ b/zsh/main.zsh @@ -17,7 +17,7 @@ config_files=(${config_files:#$DOTFILES/zsh/main.zsh}) if [[ -z "$HERMIT_ENV" ]]; then # remove duplicate entries from $PATH typeset -U PATH path - path=("$HOME/bin" "$DOTFILES/bin" "$HOME/.local/bin" $path "/opt/homebrew/sbin" "/opt/homebrew/bin") + path=("$HOME/bin" "$DOTFILES/bin" "$HOME/.local/bin" $path "/opt/homebrew/sbin" "/opt/homebrew/bin" "$HOME/.cargo/bin") # load the path files for file in ${(M)config_files:#*/path.zsh} ; do