Skip to content

Commit d3222f4

Browse files
authored
fix: spells across various files (#1126)
# Pull Request ## Description Please read these instructions and remove unnecessary text. - Try to include a summary of the changes and which issue is fixed. - Also include relevant motivation and context (if applicable). - Make sure to make PR against dev and not the master - List any dependencies that are required for this change. (e.g., packages or other PRs) - Provide a link if there is an issue related to this pull request. e.g., Fixes # (issue) - Please add Reviewers, Assignees, Labels, Projects, and Milestones to the PR. (if applicable) ## Type of change Please put an `x` in the boxes that apply: - [x] **Bug fix** (non-breaking change which fixes an issue) - [ ] **New feature** (non-breaking change which adds functionality) - [ ] **Breaking change** (fix or feature that would cause existing functionality to not work as expected) - [x] **Documentation update** (non-breaking change; modified files are limited to the documentations) - [x] **Technical debt** (a code change that does not fix a bug or add a feature but makes something clearer for devs) - [ ] **Other** (provide details below) ## Checklist Please put an `x` in the boxes that apply: - [x] I have read the [CONTRIBUTING](https://github.com/HyDE-Project/HyDE/blob/master/CONTRIBUTING.md) document. - [x] My code follows the code style of this project. - [x] My commit message follows the [commit guidelines](https://github.com/HyDE-Project/HyDE/blob/master/COMMIT_MESSAGE_GUIDELINES.md). - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added a changelog entry. - [ ] I have added necessary comments/documentation to my code. - [ ] I have added tests to cover my changes. - [ ] I have tested my code locally and it works as expected. - [ ] All new and existing tests passed. ## Screenshots (if appropriate) ## Additional context Add any other context about the problem here.
2 parents e621651 + e003273 commit d3222f4

File tree

14 files changed

+167
-168
lines changed

14 files changed

+167
-168
lines changed

Configs/.config/fish/config.fish

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ if type -q duf
2222
end
2323
end
2424

25-
# fzf
25+
# fzf
2626
if type -q fzf
27-
fzf --fish | source
27+
fzf --fish | source
2828
for file in ~/.config/fish/functions/fzf/*.fish
2929
source $file
30-
# NOTE: these funtions are built on top of fzf builtin widgets
30+
# NOTE: these functions are built on top of fzf builtin widgets
3131
# they help you navigate through directories and files "Blazingly" fast
3232
# to get help on each one, just type `ff` in terminal and press `TAB`
3333
# keep in mind all of them require an argument to be passed after the alias
@@ -43,26 +43,26 @@ bind_M_n_history
4343

4444

4545
# example integration with bat : <cltr+f>
46-
# bind -M insert \ce '$EDITOR $(fzf --preview="bat --color=always --plain {}")'
46+
# bind -M insert \ce '$EDITOR $(fzf --preview="bat --color=always --plain {}")'
4747

4848

4949
set fish_pager_color_prefix cyan
50-
set fish_color_autosuggestion brblack
50+
set fish_color_autosuggestion brblack
5151

5252
# List Directory
53-
alias c='clear'
54-
alias l='eza -lh --icons=auto'
55-
alias ls='eza -1 --icons=auto'
56-
alias ll='eza -lha --icons=auto --sort=name --group-directories-first'
57-
alias ld='eza -lhD --icons=auto'
58-
alias lt='eza --icons=auto --tree'
59-
alias un='$aurhelper -Rns'
60-
alias up='$aurhelper -Syu'
61-
alias pl='$aurhelper -Qs'
62-
alias pa='$aurhelper -Ss'
63-
alias pc='$aurhelper -Sc'
64-
alias po='$aurhelper -Qtdq | $aurhelper -Rns -'
65-
alias vc='code'
53+
alias c='clear'
54+
alias l='eza -lh --icons=auto'
55+
alias ls='eza -1 --icons=auto'
56+
alias ll='eza -lha --icons=auto --sort=name --group-directories-first'
57+
alias ld='eza -lhD --icons=auto'
58+
alias lt='eza --icons=auto --tree'
59+
alias un='$aurhelper -Rns'
60+
alias up='$aurhelper -Syu'
61+
alias pl='$aurhelper -Qs'
62+
alias pa='$aurhelper -Ss'
63+
alias pc='$aurhelper -Sc'
64+
alias po='$aurhelper -Qtdq | $aurhelper -Rns -'
65+
alias vc='code'
6666
alias fastfetch='fastfetch --logo-type kitty'
6767

6868
# Directory navigation shortcuts

Configs/.config/hyde/wallbash/always/vim.dcol

Lines changed: 48 additions & 48 deletions
Large diffs are not rendered by default.

Configs/.config/hypr/themes/theme.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $GTK_THEME=Catppuccin-Mocha
44
$ICON_THEME = Tela-circle-dracula
55
$COLOR_SCHEME = prefer-dark
66

7-
# Optional: The varibles above will be set automatically when the theme is loaded
7+
# Optional: The variables above will be set automatically when the theme is loaded
88
# This exec commands will soon be deprecated
99

1010

0 commit comments

Comments
 (0)