2 files changed,
15 insertions(+),
2 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-08-29 14:34:03 +0300
Parent:
f4d9624
jump to
| M | config/git/config |
| M | config/jj/config.toml |
M
config/jj/config.toml
··· 1 1 #:schema https://jj-vcs.github.io/jj/latest/config-schema.json 2 2 3 3 [user] 4 -name = "Olexandr Smirnov" 4 +name = "Oleksandr Smirnov" 5 5 email = "olexsmir@gmail.com" 6 6 7 7 [ui] 8 8 default-command = "l" 9 9 editor = "nvim" 10 10 pager = "delta" 11 +diff-editor = "builtin" 11 12 diff-formatter = ":git" 12 13 13 14 [signing] ··· 38 39 39 40 [revset-aliases] 40 41 "private()" = "description(glob:'private:*')" 42 + 43 +[fix.tools.stylua] 44 +command = ["stylua", "-"] 45 +patterns = ["glob:'**/*.lua'"] 46 + 47 +[fix.tools.gofumpt] 48 +command = ["gofumpt"] 49 +patterns = ["glob:'**/*.go'"] 50 + 51 +[fix.tools.gleam] 52 +command = ["gleam", "format", "--stdin"] 53 +patterns = ["glob:'**/*.gleam'"]