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
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/pkg/git/custom/custom.gitconfig
/zsh/.zcompdump*
/zsh/.zsh_history
/zsh/.zsh_sessions
/zsh/.zshrc.zwc
pkg/git/custom/custom.gitconfig
pkg/zsh/.zcompdump*
pkg/zsh/.zsh_history
pkg/zsh/.zsh_sessions
pkg/zsh/.zshrc.zwc
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion zsh/.zenv/brew.zsh → pkg/zsh/.zenv/brew.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Source brew utilities
# TODO: Remove this after global source lib
source ${ZDOTDIR}/../lib/brew.sh
source ${ZDOTDIR}/../../lib/brew.sh

# Setup Homebrew if available
if brew_path="$(abs_brew)"; then
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion zsh/.zshenv → pkg/zsh/.zshenv
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/zsh

# Zsh
export ZDOTDIR="${HOME}/.dotfiles/zsh"
export ZDOTDIR="${HOME}/.dotfiles/pkg/zsh"

# XDG Base Directory
# https://specifications.freedesktop.org/basedir-spec/latest/
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions pkg/zsh/debian-zsh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ set -euo pipefail

# Load .zshenv to get XDG_CONFIG_HOME
set +u
# shellcheck source=zsh/.zshenv
source 'zsh/.zshenv'
# shellcheck source=pkg/zsh/.zshenv
source 'pkg/zsh/.zshenv'
set -u

MISE_DIR="${XDG_CONFIG_HOME}/mise"
Expand Down
3 changes: 2 additions & 1 deletion pkg/zsh/macos-zsh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ set -euo pipefail

# Load .zshenv to get XDG_CONFIG_HOME
set +u
source 'zsh/.zshenv'
# shellcheck source=pkg/zsh/.zshenv
source 'pkg/zsh/.zshenv'
set -u

ZSH_BIN="${HOMEBREW_PREFIX}/bin/zsh" # Homebrew zsh
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading