all repos

dotfiles @ aea5a5e

my dotfiles
2 files changed, 15 insertions(+), 2 deletions(-)
jj: setup fix tools; change name
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-08-29 14:34:03 +0300
Parent: f4d9624
M config/git/config

@@ -1,7 +1,7 @@

# vim: ft=gitconfig [user] - name = Olexandr Smirnov + name = Oleksandr Smirnov email = olexsmir@gmail.com signingkey = ~/.ssh/id_ed25519.pub
M config/jj/config.toml

@@ -1,13 +1,14 @@

#:schema https://jj-vcs.github.io/jj/latest/config-schema.json [user] -name = "Olexandr Smirnov" +name = "Oleksandr Smirnov" email = "olexsmir@gmail.com" [ui] default-command = "l" editor = "nvim" pager = "delta" +diff-editor = "builtin" diff-formatter = ":git" [signing]

@@ -38,3 +39,15 @@ "format_timestamp(timestamp)" = "timestamp.ago()"

[revset-aliases] "private()" = "description(glob:'private:*')" + +[fix.tools.stylua] +command = ["stylua", "-"] +patterns = ["glob:'**/*.lua'"] + +[fix.tools.gofumpt] +command = ["gofumpt"] +patterns = ["glob:'**/*.go'"] + +[fix.tools.gleam] +command = ["gleam", "format", "--stdin"] +patterns = ["glob:'**/*.gleam'"]