diff --git a/common/bin/dotfiles-setup b/common/bin/dotfiles-setup index 1e5affa..2d95a9b 100755 --- a/common/bin/dotfiles-setup +++ b/common/bin/dotfiles-setup @@ -63,6 +63,7 @@ l common/git/config $h/.gitconfig l common/elixir/iex.exs $h/.iex.exs l common/blender/userpref.blend $c/blender/2.93/config/userpref.blend l common/lemonade/config.toml $c/lemonade.toml +l common/tig/rc $h/.tigrc popd for s in $c/lytedev-env/*/dotfiles-setup.d.fish diff --git a/common/fish/functions.fish b/common/fish/functions.fish index 9d25f83..00ba8be 100644 --- a/common/fish/functions.fish +++ b/common/fish/functions.fish @@ -18,6 +18,10 @@ if has_command exa alias lD 'la --only-dirs' end +if has_command rm-improved + alias rm rm-improved +end + function scount --wraps=count --description "Silent count exits with a non-zero status if no arguments given to count" count $argv > /dev/null end diff --git a/common/tig/rc b/common/tig/rc new file mode 100644 index 0000000..d26d3bf --- /dev/null +++ b/common/tig/rc @@ -0,0 +1,5 @@ +set git-colors = no + +color cursor default black +color title-blur default black +color title-focus default black diff --git a/os/linux/arch/provision.d/70-optional-packages.bash b/os/linux/arch/provision.d/70-optional-packages.bash index d32c7e2..88d3c4a 100755 --- a/os/linux/arch/provision.d/70-optional-packages.bash +++ b/os/linux/arch/provision.d/70-optional-packages.bash @@ -22,4 +22,5 @@ paru -Sy --needed --noconfirm \ sc-im `# Spreadsheets` \ cloc `# For counting lines of code` \ gitui `# Git TUI` \ + tokei `# Counting Lines of Code (cloc alternative)` \ pigz `# Multicore Compression Utility` \