From 993e375a76f21a2c8d4a6d4494fc65b7be4eb503 Mon Sep 17 00:00:00 2001 From: Sarthak Jain Date: Sun, 15 Mar 2026 14:55:55 +0530 Subject: [PATCH] Move shell config --- bash/.bashrc | 6 +++--- shell/{ => .config/shell}/aliases | 0 shell/{ => .config/shell}/common | 0 shell/{ => .config/shell}/personal | 0 shell/{ => .config/shell}/work | 0 shell/.stow-local-ignore | 1 - zsh/.zshrc | 7 ++++--- 7 files changed, 7 insertions(+), 7 deletions(-) rename shell/{ => .config/shell}/aliases (100%) rename shell/{ => .config/shell}/common (100%) rename shell/{ => .config/shell}/personal (100%) rename shell/{ => .config/shell}/work (100%) delete mode 100644 shell/.stow-local-ignore diff --git a/bash/.bashrc b/bash/.bashrc index 28b40b7..2834d2b 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -172,6 +172,6 @@ fi # interactive shell. # Example command: -source ~/dotfiles/shell/common -source ~/dotfiles/shell/personal #added by 6500gitsetup -source ~/dotfiles/shell/aliases +source ~/.config/shell/common +source ~/.config/shell/personal #added by 6500gitsetup +source ~/.config/shell/aliases diff --git a/shell/aliases b/shell/.config/shell/aliases similarity index 100% rename from shell/aliases rename to shell/.config/shell/aliases diff --git a/shell/common b/shell/.config/shell/common similarity index 100% rename from shell/common rename to shell/.config/shell/common diff --git a/shell/personal b/shell/.config/shell/personal similarity index 100% rename from shell/personal rename to shell/.config/shell/personal diff --git a/shell/work b/shell/.config/shell/work similarity index 100% rename from shell/work rename to shell/.config/shell/work diff --git a/shell/.stow-local-ignore b/shell/.stow-local-ignore deleted file mode 100644 index 8d98f9d..0000000 --- a/shell/.stow-local-ignore +++ /dev/null @@ -1 +0,0 @@ -.* diff --git a/zsh/.zshrc b/zsh/.zshrc index ba53daa..0329c27 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -111,9 +111,10 @@ source <(fzf --zsh) export PATH="/Users/jsarthak/.antigravity/antigravity/bin:$PATH" export PATH="/Users/jsarthak/flutter-sdk/flutter/bin:$PATH" export PATH="/opt/homebrew/bin:/opt/homebrew/sbin:$PATH" -source $HOME/dotfiles/shell/common -source $HOME/dotfiles/shell/personal -source $HOME/dotfiles/shell/aliases +source ~/.config/shell/common +source ~/.config/shell/personal +source ~/.config/shell/aliases + MANPAGER="col -b | cat" MANROFFOPT="-P-c" eval "$(zoxide init zsh)"