blob: f57a8576804d205660667c4a6f638640a6b7dcd0 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
Starfall's dotfiles setup.
This is ["the best way to store your dotfiles"](https://www.atlassian.com/git/tutorials/dotfiles).
## Prerequisites
* git
## Starting your own
```bash
git init --bare $HOME/.dotfiles
alias config='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
config config --local status.showUntrackedFiles no
echo "alias config='git --git-dir=$HOME/.doftiles/ --work-tree=$HOME'" >> .bashrc
```
## Checking out on a new machine
```bash
git clone --bare ssh://git@monsterware.dev:60666/devin/dotfiles.git $HOME/.dotfiles
alias config='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
config checkout
config config --local status.showUntrackedFiles no
```
## Other new machine setup
### sshd config
```bash
echo <<END
PermitRootLogin no
PasswordAuthentication no
END >> /etc/ssh/sshd_config
```
### todo
* zsh, and rewrite our existing zsh config
* p10k
* zsh-history-substring-search
* zsh-autosuggestions
* fortune
* grab our old git config
* neovim and port our old vim config
* firefox lockwise
* autoupdates
* krita and tablet support
* call out things that were preinstalled here - git, firefox, python
* turn all of this stuff into
|