Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Submodule Update]: Bump submodules/dotfiles from 8c73b8f to 57e8294 #103

Merged
merged 3 commits into from
Dec 20, 2024
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
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