vimwiki: dth @ DK023900WSL

This commit is contained in:
DannyDannyDanny 2023-04-11 22:01:32 +02:00
parent adfba80d3e
commit 065f69dd3b
2 changed files with 16 additions and 0 deletions

4
.zshrc
View file

@ -122,6 +122,10 @@ if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH" PATH="$HOME/.local/bin:$PATH"
fi fi
# for poetry
fpath+=~/.zfunc
autoload -Uz compinit && compinit
alias pbpaste="powershell.exe -noprofile Get-Clipboard" alias pbpaste="powershell.exe -noprofile Get-Clipboard"
alias pbcopy="clip.exe" alias pbcopy="clip.exe"

View file

@ -11,6 +11,18 @@ setup_alacritty:
mkdir -p ~/.config/alacritty mkdir -p ~/.config/alacritty
ln -s -f ~/dotfiles/.config/alacritty/alacritty.yml ~/.config/alacritty/alacritty.yml ln -s -f ~/dotfiles/.config/alacritty/alacritty.yml ~/.config/alacritty/alacritty.yml
setup_poetry:
# TODO: make raget not tested properly
sudo apt purge python3 python3-pip python3-openssl
sudo apt-get update
sudo apt-get upgrade
sudo apt -y install libssl-dev libffi-dev python3 python3-pip python3-openssl
# poetry install via https://python-poetry.org/docs/#installation
curl -sSL https://install.python-poetry.org | python3 -
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.11
setup_tmux_a: setup_tmux_a:
echo "configuring tmux with 'a' as prefix" echo "configuring tmux with 'a' as prefix"
ln -s -f ~/dotfiles/.tmux.conf ~/.tmux.conf ln -s -f ~/dotfiles/.tmux.conf ~/.tmux.conf