Skip to content

Commit

Permalink
update to latest version
Browse files Browse the repository at this point in the history
- add new shell abbreviations
- add `templateDir` to git config
- add fisher to `upall` function
  • Loading branch information
kucera-lukas committed Jun 13, 2022
1 parent d08c52a commit 7fa4b82
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
1 change: 1 addition & 0 deletions home/dot_config/git/config.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
pager = less
[init]
defaultBranch = "main"
templateDir = /home/lkms19/.config/git/
[log]
decorate = full
[pull]
Expand Down
5 changes: 5 additions & 0 deletions home/dot_config/private_fish/conf.d/abbrs.fish
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ if not set -q fish_initialized
abbr -a -- slack 'flatpak run com.slack.Slack'
abbr -a -- telegram 'flatpak run org.telegram.desktop'
abbr -a -- zoom 'flatpak run us.zoom.Zoom'
abbr -a -- tuple 'flatpak run app.tuple.app'
abbr -a -- kolourpaint 'flatpak run org.kde.kolourpaint'
# fd
abbr -a -- find fd
Expand All @@ -180,6 +182,9 @@ if not set -q fish_initialized
# chezmoi
abbr -a -- cz chezmoi
# mypy
abbr -a -- mypy 'mypy --strict'
# utilities
abbr --add -- activate '. venv/bin/activate.fish'
abbr --add -- cddl 'cd $HOME/Downloads'
Expand Down
6 changes: 3 additions & 3 deletions home/dot_config/private_fish/fish_plugins
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
gazorby/fish-abbreviation-tips
PatrickF1/fzf.fish
jorgebucaran/fisher
IlanCosman/tide@v5
sentriz/fish-pipenv
ryoppippi/fish-poetry
jorgebucaran/nvm.fish
gazorby/fish-abbreviation-tips
PatrickF1/fzf.fish
jorgebucaran/fisher
6 changes: 4 additions & 2 deletions home/dot_config/private_fish/functions/upall.fish
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
function upall --description "dnf and flatpak update"
function upall --description "update everything"
echo "updating dnf..."
sudo dnf update -y

echo "updating fisher..."
fisher update

echo "updating flatpak..."
flatpak update -y

end
4 changes: 2 additions & 2 deletions home/dot_editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ trim_trailing_whitespace = false
indent_size = 2

# Tab indentation
[{,GNU}{M,m}akefile]
[GNU{M,m}akefile]
indent_style = tab

# 2 space indentation
[*.{{j,t}s{x,},json,y{a,}ml,html}]
[*.{js,jsx,ts,tsx,json,yml,yaml,html}]
indent_size = 2
2 changes: 1 addition & 1 deletion home/dot_tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python 3.9.9
python 3.10.4
golang 1.17.5

0 comments on commit 7fa4b82

Please sign in to comment.