From 08fcdebf28611c819c357086a3181d065a4eb1ab Mon Sep 17 00:00:00 2001 From: Steffen Rademacker Date: Tue, 8 Feb 2022 12:33:56 +0100 Subject: [PATCH] Minor stuff --- gitconfig | 2 +- install/1_languages.sh | 4 ++-- install/2_cli-tools.sh | 1 + install/3_vimux.sh | 3 --- install/5_webdev.sh | 2 -- zsh/aliases.zsh | 2 +- 6 files changed, 5 insertions(+), 9 deletions(-) diff --git a/gitconfig b/gitconfig index d10ce4b..f5e7a9c 100644 --- a/gitconfig +++ b/gitconfig @@ -5,7 +5,7 @@ excludesfile = ~/.gitignore autocrlf = input eol = lf - pager = diff-so-fancy + pager = diff-so-fancy | less -F -i -J -M -R -W -x2 -X -z-4 [color] ui = auto diff --git a/install/1_languages.sh b/install/1_languages.sh index e6aa3b9..1415a20 100755 --- a/install/1_languages.sh +++ b/install/1_languages.sh @@ -18,6 +18,6 @@ npm update -g # first: find out the current python3 version in homebrew # then install this version with pyenv and link it brew install pyenv # restart terminal, then: -pyenv install 3.10.1 -pyenv global 3.10.1 +pyenv install 3.10.2 +pyenv global 3.10.2 pip install --upgrade pip diff --git a/install/2_cli-tools.sh b/install/2_cli-tools.sh index 6aea299..6900300 100755 --- a/install/2_cli-tools.sh +++ b/install/2_cli-tools.sh @@ -15,6 +15,7 @@ brew install lazygit brew install nnn brew install ripgrep brew install starship +brew install topgrade brew install tree brew install viu diff --git a/install/3_vimux.sh b/install/3_vimux.sh index 9469e66..4d83b39 100755 --- a/install/3_vimux.sh +++ b/install/3_vimux.sh @@ -23,9 +23,6 @@ npm i -g typescript-language-server npm i -g vscode-langservers-extracted npm i -g yaml-language-server -# additional tools for code validation via null-ls - - # packer + treesitter nvim +PackerSync +TSUpdate nvim +checkhealth diff --git a/install/5_webdev.sh b/install/5_webdev.sh index 03adcd0..21b3f7c 100755 --- a/install/5_webdev.sh +++ b/install/5_webdev.sh @@ -25,9 +25,7 @@ sudo ln -s ~/dotfiles/etc/resolver /etc/resolver sudo ln -f ~/dotfiles/etc/hosts /etc/hosts # additional webdev cli tools -npm install -g depcheck npm install -g npm-check -npm install -g npm-check-updates npm install -g yarn # certificates for local ssl diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 38ef4a1..a321efe 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -21,7 +21,7 @@ alias q='exit' alias sudo='sudo ' alias t='tmux -u -2' alias ta='tmux -u attach' -alias upall='brewup && npm-check -gu' +alias upall='topgrade --disable pnpm && brewup && npm-check -gu && vimup' alias v=$EDITOR alias vd='$EDITOR -d' alias vdiff='$EDITOR -d'