Now using dotter

This commit is contained in:
Julian Mutter 2022-03-03 12:10:19 -04:00
parent f694963376
commit 4749d2cefc
27 changed files with 35 additions and 0 deletions

25
.dotter/global.toml Normal file
View File

@ -0,0 +1,25 @@
[helpers]
[default]
depends = []
[manjaro.files]
manjaro = "~"
[mc.files]
mc = "~/.config/mc"
[vim.files]
# type symbolic prevents interpreting '{{' as template
"vim/.vimrc" = { target = "~/.vimrc", type = "symbolic" }
"vim/init.vim" = { target = "~/.config/nvim/init.vim", type = "symbolic" }
[i3.files]
"i3/dunst" = "~/.config/dunst"
"i3/i3" = "~/.config/i3"
"i3/i3blocks" = { target = "~/.config/i3blocks", type = "symbolic" }
"i3/rofi" = "~/.config/rofi"
"i3/i3-scrot.conf" = "~/.config/i3-scrot.conf"
[emacs.files]
"emacs/doom" = "~/.config/doom"

2
.dotter/local.toml Normal file
View File

@ -0,0 +1,2 @@
# includes = []
packages = ["mc", "vim", "emacs", "i3"]

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.dotter/cache.toml
.dotter/cache

View File

@ -9,3 +9,9 @@ All neccessary dependencies I could think of are listed in the *dependencies* fi
cd .dotfiles
stow i3 mc emacs vim
```
## Alternative with [dotter](https://github.com/SuperCuber/dotter):
``` sh
cd .dotfiles
dotter deploy
```