Go to file
gpkvt ec09df9b64 Added make private 2023-07-15 14:15:50 +02:00
conky first commit 2023-07-14 22:39:37 +02:00
fonts suppress error messages 2023-07-15 03:28:13 +02:00
git first commit 2023-07-14 22:39:37 +02:00
mc first commit 2023-07-14 22:39:37 +02:00
neofetch Check if symlink already exists to avoid sudo asking for passwords 2023-07-14 22:56:46 +02:00
powerline first commit 2023-07-14 22:39:37 +02:00
scripts first commit 2023-07-14 22:39:37 +02:00
task first commit 2023-07-14 22:39:37 +02:00
tmux first commit 2023-07-14 22:39:37 +02:00
zsh first commit 2023-07-14 22:39:37 +02:00
.gitignore first commit 2023-07-14 22:39:37 +02:00
Makefile Added make private 2023-07-15 14:15:50 +02:00
README.md Added make private 2023-07-15 14:15:50 +02:00
install.zsh Added make private 2023-07-15 14:15:50 +02:00

README.md

Install / Update

Run make install or ./install.zsh to install the dotfiles. Run make update or ./install.zsh update to update the dotfiles.

Private files

Some dotfiles contains sensitive informationen (e.g. Credentials) you don't want to share in public git repos. Therefore you can create an folder named private to check out a private git repo there including all you sensitive files. This folder will not be included in the public repo.

You can use make private to clone your private dotfile repo.

tmux

Plugin and Theme Installation

Start tmux and press <prefix> (ctrl+y) followed by I (capital i) to install plugins and theme.

Sessions

Sessionscripts in tmux might only work properly with .ssh/config

Fixes

Docker-Autocompletion

docker-autocompletion might report compinit:501: no such file or directory: /usr/share/zsh/vendor-completions/_docker. The file is a symlink to /mnt/wsl/docker-desktop/cli-tools/usr/share/zsh/vendor-completions/_docker which doesn't exist if Docker-Desktop isn't running. A workaround is to replace the symlink with an copy of the real file:

sudo rm -rf /usr/share/zsh/vendor-completions/_docker
sudo cp /mnt/wsl/docker-desktop/cli-tools/usr/share/zsh/vendor-completions/_docker /usr/share/zsh/vendor-completions/
sudo chattr +i /usr/share/zsh/vendor-completions/_docker