Skip to content

Commit

Permalink
Merge pull request #103 from StrangeRanger/dependabot/submodules/subm…
Browse files Browse the repository at this point in the history
…odules/dotfiles-57e8294
  • Loading branch information
StrangeRanger authored Dec 20, 2024
2 parents e1a4164 + 22d571a commit cb174be
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ Entries under the **Removed** section indicate items removed from the entire doc

### Added

- added(aliases): add `update-grub-config` to `updatepacman` alias
- added(zshrc): seperate update based variables
- added(alias): add new alias `deletelocalbranches`
- added(alias): add `update-grub-config` to `updatepacman` alias

## 2024-12-02

Expand Down
1 change: 1 addition & 0 deletions includes/zshrc-files/zshrc-linux-snippet.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
alias zls="eza"
alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +"
alias update-grub-config="sudo grub-mkconfig -o /boot/grub/grub.cfg"
alias deletelocalbranches="git branch | grep -v 'main' | xargs git branch -D"
hash xdg-open 2>/dev/null && alias open="xdg-open"

## Update based aliases.
Expand Down
1 change: 1 addition & 0 deletions includes/zshrc-files/zshrc-linux.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ source "$ZSH/oh-my-zsh.sh"
alias zls="eza"
alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +"
alias update-grub-config="sudo grub-mkconfig -o /boot/grub/grub.cfg"
alias deletelocalbranches="git branch | grep -v 'main' | xargs git branch -D"
hash xdg-open 2>/dev/null && alias open="xdg-open"

## Update based aliases.
Expand Down
3 changes: 3 additions & 0 deletions includes/zshrc-files/zshrc-macos-snippet.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ alias zls="eza"
alias rmdsstore="find . -name '*.DS_Store' -type f -delete"
alias code="open -a 'Visual Studio Code.app' ."
alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +"
alias deletelocalbranches="git branch | grep -v 'main' | xargs git branch -D"

## Update based aliases.
alias updatebrew="brew update && brew upgrade && brew autoremove && brew cleanup && brew doctor"

###
Expand Down
3 changes: 3 additions & 0 deletions includes/zshrc-files/zshrc-macos.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ alias zls="eza"
alias rmdsstore="find . -name '*.DS_Store' -type f -delete"
alias code="open -a 'Visual Studio Code.app' ."
alias formatc="find . -name '*.cs' -type f -exec clang-format --style='file:$HOME/Programs/Mine/Formatter Configs/CSharp_clang-format/_clang-format' -i {} +"
alias deletelocalbranches="git branch | grep -v 'main' | xargs git branch -D"

## Update based aliases.
alias updatebrew="brew update && brew upgrade && brew autoremove && brew cleanup && brew doctor"

###
Expand Down
2 changes: 1 addition & 1 deletion submodules/dotfiles

0 comments on commit cb174be

Please sign in to comment.