blob: 7fbe04f88fac5e337d627f7d79e5fe21ed777e2e (
plain) (
blame)
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
29
30
31
32
33
|
dotfiles as of Decmeber 2021 use chezmoi instead of a 10+ year old
Makefile.
cp chezmoi.toml.censored ~/.config/chezmoi/chezmoi.toml
After a checkout, don't forget to run
git config core.hooksPath .githooks
To get the submodules setup, run
git submodule init
git submodule update
To push to self-host and github, add the following to .git/config
[remote "origin"]
url = git@github.com:ryanakca/ryanakca-dotfiles.git
url = hades.rak.ac:public_git/ryanakca-dotfiles.git
fetch = +refs/heads/*:refs/remotes/origin/*
To install fonts:
make -C fonts install
To install emacs packages:
make -C emacsen
make -C emacsen install
To update Debian known hosts:
gmake udh
|