Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ jobs:
uses: actions/checkout@v6
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
ignore_names: gdone.zsh
4 changes: 3 additions & 1 deletion dotfiles/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export PATH="$PATH:$ANDROID_HOME/emulator"
export PATH="$PATH:$ANDROID_HOME/platform-tools"

# source $HOMEBREW_PREFIX/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
source $HOMEBREW_PREFIX/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source "$HOMEBREW_PREFIX/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
source "$HOMEBREW_PREFIX/opt/fzf-tab/share/fzf-tab/fzf-tab.zsh"

# Load Antidote and plugins
Expand All @@ -43,6 +43,7 @@ antidote load
[[ -f $HOME/.extra ]] && source "$HOME/.extra"


# shellcheck disable=SC1090
for file in "$HOME/bin/"*.zsh; do
[ -f "$file" ] && source "$file"
done
Expand All @@ -52,6 +53,7 @@ autoload -Uz compinit && compinit

eval "$(starship init zsh)"

# shellcheck disable=SC1090
[[ "$TERM_PROGRAM" == "kiro" ]] && . "$(kiro --locate-shell-integration-path zsh)"

export CODEX_HOME="$HOME/.codex"
Expand Down
4 changes: 2 additions & 2 deletions scripts/dock.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# https://github.com/rpavlick/add_to_dock

Expand Down Expand Up @@ -159,7 +159,7 @@ for app in "${apps[@]}"; do
done

for folder in "${folders[@]}"; do
add_folder_to_dock $folder
add_folder_to_dock "$folder"
done

killall Dock
Loading