i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add jj

+35 -1
+1 -1
README.md
··· 86 86 #### Install dotfiles 87 87 ``` 88 88 rm -rf ~/.config/fish 89 - stow -d dotfiles bin cpupower direnv fish git gtk neofetch nvim pacman ripgrep mise starship stow wayland yay ghostty 89 + stow -d dotfiles bin cpupower direnv fish git gtk neofetch nvim pacman ripgrep mise starship stow wayland yay ghostty jj 90 90 ``` 91 91 92 92 #### Use systemd-resolved
+34
jj/.config/jj/config.toml
··· 1 + #:schema https://jj-vcs.github.io/jj/latest/config-schema.json 2 + 3 + [user] 4 + name = "Bas van den Wollenberg" 5 + email = "hi@bas.sh" 6 + 7 + [aliases] 8 + stack = ["util", "exec", "--", "bunx", "jj-stack"] 9 + spr = ["util", "exec", "--", "jj-spr"] 10 + 11 + [ui] 12 + default-command = "log" 13 + diff-formatter = "delta" 14 + 15 + [merge-tools.delta] 16 + diff-args=["--side-by-side", "$left", "$right", "--width=$width"] 17 + diff-expected-exit-codes = [0, 1] 18 + 19 + [signing] 20 + behavior = "own" 21 + backend = "ssh" 22 + key = "~/.ssh/id_ed25519_bas.pub" 23 + 24 + [templates] 25 + draft_commit_description = ''' 26 + concat( 27 + builtin_draft_commit_description, 28 + "\nJJ: ignore-rest\n", 29 + diff.git(), 30 + ) 31 + ''' 32 + 33 + [gg.ui] 34 + recent-workspaces = ["/home/bas/dev/server"]