Skip to content

Commit 7fa4b82

Browse files
committed
update to latest version
- add new shell abbreviations - add `templateDir` to git config - add fisher to `upall` function
1 parent d08c52a commit 7fa4b82

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

home/dot_config/git/config.tmpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
pager = less
2222
[init]
2323
defaultBranch = "main"
24+
templateDir = /home/lkms19/.config/git/
2425
[log]
2526
decorate = full
2627
[pull]

home/dot_config/private_fish/conf.d/abbrs.fish

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ if not set -q fish_initialized
165165
abbr -a -- slack 'flatpak run com.slack.Slack'
166166
abbr -a -- telegram 'flatpak run org.telegram.desktop'
167167
abbr -a -- zoom 'flatpak run us.zoom.Zoom'
168+
abbr -a -- tuple 'flatpak run app.tuple.app'
169+
abbr -a -- kolourpaint 'flatpak run org.kde.kolourpaint'
168170
169171
# fd
170172
abbr -a -- find fd
@@ -180,6 +182,9 @@ if not set -q fish_initialized
180182
# chezmoi
181183
abbr -a -- cz chezmoi
182184
185+
# mypy
186+
abbr -a -- mypy 'mypy --strict'
187+
183188
# utilities
184189
abbr --add -- activate '. venv/bin/activate.fish'
185190
abbr --add -- cddl 'cd $HOME/Downloads'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
gazorby/fish-abbreviation-tips
2+
PatrickF1/fzf.fish
3+
jorgebucaran/fisher
14
IlanCosman/tide@v5
25
sentriz/fish-pipenv
36
ryoppippi/fish-poetry
47
jorgebucaran/nvm.fish
5-
gazorby/fish-abbreviation-tips
6-
PatrickF1/fzf.fish
7-
jorgebucaran/fisher
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
function upall --description "dnf and flatpak update"
1+
function upall --description "update everything"
22
echo "updating dnf..."
33
sudo dnf update -y
44

5+
echo "updating fisher..."
6+
fisher update
7+
58
echo "updating flatpak..."
69
flatpak update -y
7-
810
end

home/dot_editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ trim_trailing_whitespace = false
2424
indent_size = 2
2525

2626
# Tab indentation
27-
[{,GNU}{M,m}akefile]
27+
[GNU{M,m}akefile]
2828
indent_style = tab
2929

3030
# 2 space indentation
31-
[*.{{j,t}s{x,},json,y{a,}ml,html}]
31+
[*.{js,jsx,ts,tsx,json,yml,yaml,html}]
3232
indent_size = 2

home/dot_tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
python 3.9.9
1+
python 3.10.4
22
golang 1.17.5

0 commit comments

Comments
 (0)