blob: 731db65a851692315cf44d4c3c0b1bb7c5ccf183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
* newDotFiles
This is where i keep my dotfiles and scripts.
** Dotfile management
I use [[https://www.gnu.org/software/stow/][GNU Stow]] for dot file management. This splits the dotfiles into multiple modules,
for example can zsh be installed without installing dwm.
To install a package or module one can run.
: stow emacs
** Stows script
This scripts runs pre and post setup scripts.
These scripts are in encased in # because it's in stow's default ignore :-D.
To use the wrapper script run.
: stows emacs
To pass flags to package scripts put them before the package
: stows vim -D emacs
This will setup vim and delete emacs.
|