dots/README.md

30 lines
824 B
Markdown
Raw Normal View History

2023-05-21 09:49:43 +00:00
# dotfiles
2023-12-04 06:16:26 +00:00
hello, and welcome! this is the place that i store my dotfiles.
2023-05-21 09:49:43 +00:00
2023-12-04 06:16:26 +00:00
i have
2024-02-03 12:56:39 +00:00
* zsh/starship configuration
* hand-picked fontconfig fonts
* neovim!
* different user-dirs and some cool default apps
2023-05-21 09:49:43 +00:00
2023-12-04 06:16:26 +00:00
## cloning this repo
i manage my dotfiles using a bare git repository. here's a quick rundown on how to get this dotfiles for yourself:
```sh
2023-12-04 06:17:51 +00:00
alias cfg="git --git-dir=$HOME/.local/share/dotfiles-repo/ --work-tree=$HOME"
git clone --bare http://git.vern.cc/vitorg/dots "$HOME/.local/share/dotfiles-repo"
2023-12-04 06:16:26 +00:00
cfg checkout
```
if you find an issue while performing the last command, you'll probably have a list of files you already have in your ~. if that's the case, then move/delete them and try again
and finally:
```sh
cfg config --local status.showUntrackedFiles no
```
_this is mostly for my personal use tho lol_