Skip to content

Latest commit

 

History

History
75 lines (58 loc) · 2.21 KB

File metadata and controls

75 lines (58 loc) · 2.21 KB

dotfiles

source order:

config.fish >
  local.sh, 
  $platform.fish > common.fish,
  local.fish

.zshrc >
  local.sh,
  zsh_$platform > zsh_common,
  zsh_local

user should modify:

  • ~/.config/local.sh # variables
  • ~/.config/fish/local.fish # fish overrides
  • ~/.config/zsh/zsh_local # zsh overrides

contributing

  • if new files are added to dotfiles/src, then run restow to update symlinks

macbook setup

  1. setup 1password, install ssh agent, then see 1.(a)
  2. clone dotfiles repo to ~/dev/dotfiles
  3. ~/dev/dotfiles/scripts/init
  4. gpg --full-generate-key, use defaults, name="Tim O'Connell", email=, no passphrase (see: https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key)
  5. follow instructions to add gpg key to github & gitlab
  6. set signingkey to ~/.gpg.gitconfig:
[user]
    signingkey = xxx

manual installations:

  • 1Password
  • Arc Browser
  • SetApp
  • JetBrains Toolbox + VSCode
  1. (a) where there is multiple e.g. github ssh keys for the same domain, then download the public keys to ~/.ssh/, and add entries for unique remote names to ~/.ssh/config:
Host github.com
  hostname github.com
  identityfile ~/.ssh/github.pub
  identitiesonly yes

Host skygit
  hostname github.com
  identityfile ~/.ssh/github_sky.pub
  identitiesonly yes

Host *
    IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"

--> then use e.g. gcl git@skygit:<workspace>/<repo>.git for the origin remote

references

notes

  • when running the init script, it is most reliable to open zsh in native terminal (not alacritty or another emulator), then run eg ./dev/dotfiles/scripts/init
  • storing GPG keys in 1password as a reference, but they are not integrated, the local GPG key is used for signing
  • maybe this tool will help with the bash->fish PATH loading: https://github.com/edc/bass
  • todo: the fisher install step is not idempotent and is super flaky between different shells