points/.README.md

68 lines
1.5 KiB
Markdown
Raw Normal View History

2023-03-23 09:49:43 +01:00
# Bare Git Repository
- https://www.atlassian.com/git/tutorials/dotfiles
- StreakyCobra
## Starting from scratch
```
git init --bare $HOME/.dotfiles
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
dotfiles config --local status.showUntrackedFiles no
```
## Install onto a new system
The `checkout` command is expected to fail with a message.
This is because your $HOME folder might already have some stock configuration
files which would be overwritten by Git.
The “BKDIR” part is a rough shortcut to move all the offending files
automatically to a backup folder:
2023-03-23 09:49:43 +01:00
```
git clone --bare <git-repo-url> $HOME/.dotfiles
2023-03-23 09:49:43 +01:00
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
dotfiles config --local status.showUntrackedFiles no
BKDIR=".dotfiles-backup/";
dotfiles checkout 2>&1 | egrep "\s+" | awk {'print $1'} |
xargs -I{} sh -c "mkdir -p \$(dirname ${BKDIR}{}); mv -iv {} ${BKDIR}{}";
2023-03-23 09:49:43 +01:00
dotfiles checkout
2023-03-23 09:49:43 +01:00
```
2023-05-05 10:51:56 +02:00
## Useful Commands
- List all tracked files (from CWD):
`dotfiles ls-tree --name-only -rz main | xargs -0 $(whence lsd) -lU`
2023-03-23 09:49:43 +01:00
## Other Tools
```
lazygit --git-dir=$HOME/.dotfiles --work-tree=$HOME
```
2023-04-27 10:49:07 +02:00
# Install recent versions of applications
## kitty
- https://sw.kovidgoyal.net/kitty/binary/
```
2023-05-04 17:33:19 +02:00
sudo apt-get install kitty-terminfo
2023-04-27 10:49:07 +02:00
sh ~/.config/kitty/installer.sh
```
**Note**:
Kitty prepends its _bin_ folder to the path.
So it is more coherent/simpler to copy this behaviour into Zsh.
2023-05-04 17:33:19 +02:00
## lazygit
```
go install github.com/jesseduffield/lazygit@latest
```