20 lines
481 B
Markdown
20 lines
481 B
Markdown
# dotfiles
|
|
|
|
To clone the repo :
|
|
```console
|
|
pacman -Syu --needed zsh sway firefox alacritty neovim
|
|
|
|
git clone --bare https://github.com/AustralEpitech/.dotfiles.git ~/.dotfiles
|
|
alias config='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
|
|
|
|
config checkout # remove conflicted files and re-run the command
|
|
|
|
config submodule update --init --recursive --remote
|
|
config config status.showUntrackedFiles no
|
|
```
|
|
|
|
To update submodules:
|
|
```
|
|
config submodule update --recursive --remote
|
|
```
|