Updates for ergodox and 3 monitors; quote
Always dark mode
Fixes for things
See my notes from a LUG presentation I gave on 2020-09-10
My dotfiles are managed by chezmoi.
Old Dotfile Repos:
.----------------------------------------------------------------------------.
| WARNING: |
| |
| Don't install somebody else's dotfiles. Use them as inspiration, but don't |
| actually just blindly copy. |
'----------------------------------------------------------------------------'
To install my dotfiles, use the following chezmoi
command:
chezmoi init --apply --verbose git@git.sr.ht:~sumner/dotfiles
I create a few tmpfs
on my filesystem. I use ~/tmp
as my personal temporary
folder. I dump downloads there (copy them out if I want to keep it for longer),
I also use it as a playground. Both ~/.cache
and /var/cache/pacman/pkg
are
just caches, and I really don't want stuff stored there staying on my filesystem
for a long time.
Here's my /etc/fstab
:
# tmpfs for ~/tmp, ~/.cache, /var/cache/pacman/pkg
tmpfs /home/sumner/tmp tmpfs rw,nodev,nosuid,size=32G 0 0
tmpfs /home/sumner/.cache tmpfs rw,nodev,nosuid,size=32G 0 0
tmpfs /var/cache/pacman/pkg tmpfs rw,nodev,nosuid,size=32G 0 0
I use NeoVim instead of Vim now. The old Vim config has not been updated in a while.
.zshrc
: https://git.sr.ht/~sumner/dotfiles/tree/master/dot_zshrci3status-rust
config: https://git.sr.ht/~sumner/dotfiles/tree/master/dot_config/i3/status.toml.tmplmuttrc
: https://git.sr.ht/~sumner/dotfiles/tree/master/dot_mutt/muttrcofflineimap
config: https://git.sr.ht/~sumner/dotfiles/tree/master/dot_offlineimaprcAll of these dotfiles are licensed under the Unlicense. See the LICENSE file.