old
1(require "helix/configuration.scm")
2
3(define-lsp "steel-language-server" (command "steel-language-server") (args '()))
4(define-language "scheme"
5 (language-servers '("steel-language-server"))
6 (formatter (command "schemat")))
7
8(require (only-in "smith.hx/smith.scm"
9 smith-plugin
10 smith-prune
11 smith-init))
12
13(smith-plugin "https://github.com/mtul0729/helix-fcitx-focus.git")
14(smith-plugin "https://github.com/Xerxes-2/wakatime.hx.git")
15(smith-plugin "https://github.com/Ra77a3l3-jar/who.hx.git")
16
17(smith-plugin "https://github.com/Ra77a3l3-jar/forest.hx.git"
18 (config
19 (forest-configure! 'left #:ignore (list ".git" ".jj" "result" "target" "__pycache__"))
20 (forest-set-style! 'mini))
21 (bind
22 ("normal" ("space" "e") ":forest-open")))
23
24(smith-init)