a fresh start, somewhat
This commit is contained in:
parent
d8b7e86dd6
commit
c75364cad4
5 changed files with 30 additions and 15 deletions
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2021 mokou
|
Copyright (c) 2023 liv
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
18
README.md
Normal file
18
README.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
These are my dotfiles. There's many like them out there, but these ones are mind
|
||||||
|
blah blah blah something or other
|
||||||
|
|
||||||
|
I manage these using [chezmoi](https://chezmoi.io). I've tried many methods over
|
||||||
|
the years, from manual symlinking (hell!) to using GNU `stow` (annoying) to using
|
||||||
|
Nix's `home-manager` (entirely different kind of hell), and chezmoi is what
|
||||||
|
works for me with the least amount of headache.
|
||||||
|
|
||||||
|
So to install on a fresh laptop:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# You also need rustup and Rust installed or else Fish will complain
|
||||||
|
$PACKAGEMANAGER install chezmoi zoxide fish
|
||||||
|
chezmoi init git@codeberg.org:shadows_withal/home.git # or HTTPS URL if you're not me hehe
|
||||||
|
chezmoi apply
|
||||||
|
source ~/.config/fish/config.fish
|
||||||
|
# from here on out, see what breaks and fix it!
|
||||||
|
```
|
|
@ -20,21 +20,13 @@ end
|
||||||
setpath /opt/local/bin
|
setpath /opt/local/bin
|
||||||
setpath /opt/homebrew/bin
|
setpath /opt/homebrew/bin
|
||||||
setpath ~/.rbenv/shims
|
setpath ~/.rbenv/shims
|
||||||
setpath ~/.rbenv/bin
|
|
||||||
setpath ~/.pyenv/shims
|
setpath ~/.pyenv/shims
|
||||||
setpath ~/.cargo/bin
|
setpath ~/.cargo/bin
|
||||||
setpath ~/.nimble/bin
|
|
||||||
setpath ~/.local/bin
|
setpath ~/.local/bin
|
||||||
setpath ~/.local/bin/elixir-ls
|
setpath ~/.local/bin/elixir-ls
|
||||||
setpath ~/.bin
|
|
||||||
setpath ~/.cask/bin
|
|
||||||
setpath ~/.npm-packages/bin
|
|
||||||
setpath ~/.n/bin
|
|
||||||
setpath /snap/bin
|
|
||||||
setpath ~/.emacs.d/bin
|
setpath ~/.emacs.d/bin
|
||||||
setpath ~/.fly/bin
|
setpath ~/.fly/bin
|
||||||
setpath ~/.nimble/bin
|
setpath ~/.nimble/bin
|
||||||
setpath ~/Projects/go/bin
|
|
||||||
setpath ~/.bun/bin
|
setpath ~/.bun/bin
|
||||||
setpath ~/go/bin
|
setpath ~/go/bin
|
||||||
|
|
||||||
|
@ -63,23 +55,28 @@ set -x LANG "en_US.UTF-8"
|
||||||
set -x TZ_LIST "Europe/Berlin;Berlin,America/New_York;US East,America/Los_Angeles;US West,Europe/London;London"
|
set -x TZ_LIST "Europe/Berlin;Berlin,America/New_York;US East,America/Los_Angeles;US West,Europe/London;London"
|
||||||
|
|
||||||
# General Aliases
|
# General Aliases
|
||||||
|
# Convenience for editing my shell config
|
||||||
alias editconfig "chezmoi edit ~/.config/fish/config.fish; and chezmoi apply; and source ~/.config/fish/config.fish"
|
alias editconfig "chezmoi edit ~/.config/fish/config.fish; and chezmoi apply; and source ~/.config/fish/config.fish"
|
||||||
alias printsshkey "cat ~/.ssh/id_ed25519.pub -p --color never"
|
# Some other aliases
|
||||||
alias doco "docker-compose"
|
alias doco "docker-compose"
|
||||||
|
alias czm "chezmoi"
|
||||||
|
# z is such a weird key to hit frequently, j is much better
|
||||||
alias j "z"
|
alias j "z"
|
||||||
|
# Cargoes and Rust-s
|
||||||
alias c "cargo"
|
alias c "cargo"
|
||||||
alias cr "cargo run"
|
alias cr "cargo run"
|
||||||
alias cb "cargo build"
|
alias cb "cargo build"
|
||||||
alias cwr "cargo watch -x run"
|
alias cwr "cargo watch -x run"
|
||||||
alias rp "rustup"
|
alias rp "rustup"
|
||||||
|
# Rubies
|
||||||
alias be "bundle exec"
|
alias be "bundle exec"
|
||||||
|
# cd into a temp directory, very useful!
|
||||||
alias mkt "cd (mktemp -d)"
|
alias mkt "cd (mktemp -d)"
|
||||||
alias czm "chezmoi"
|
|
||||||
alias lsh "ls -lah"
|
|
||||||
# Git Aliases
|
# Git Aliases
|
||||||
alias g "git"
|
alias g "git"
|
||||||
alias gs "g status --short"
|
alias gs "g status --short"
|
||||||
alias gl "g log --color --graph --abbrev-commit --oneline"
|
alias gl "g log --color --graph --abbrev-commit --oneline"
|
||||||
|
# "git quick push" and "git quick commit". it makes sense in my head
|
||||||
alias gqp "g add --all; and g commit; and g push"
|
alias gqp "g add --all; and g commit; and g push"
|
||||||
alias gqc "g add --all; and g commit"
|
alias gqc "g add --all; and g commit"
|
||||||
alias gpl "g pull"
|
alias gpl "g pull"
|
|
@ -1,6 +1,6 @@
|
||||||
[user]
|
[user]
|
||||||
name = mokou
|
name = liv
|
||||||
email = mokou@fastmail.com
|
email = shadows_withal@fastmail.com
|
||||||
signingkey = 0x6F33B647A7AC80CE
|
signingkey = 0x6F33B647A7AC80CE
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
editor = vim
|
||||||
|
|
2
dot_hgrc
2
dot_hgrc
|
@ -2,7 +2,7 @@
|
||||||
[ui]
|
[ui]
|
||||||
# name and email, e.g.
|
# name and email, e.g.
|
||||||
# username = Jane Doe <jdoe@example.com>
|
# username = Jane Doe <jdoe@example.com>
|
||||||
username = marisa <mokou@fastmail.com>
|
username = liv <shadows_withal@fastmail.com>
|
||||||
editor = vim
|
editor = vim
|
||||||
|
|
||||||
tweakdefaults = True
|
tweakdefaults = True
|
||||||
|
|
Loading…
Add table
Reference in a new issue