this repo has no description
0
fork

Configure Feed

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

update helix languages config

+16 -4
+16 -4
.helix/languages.toml
··· 1 - [[language]] 2 - name = "jsonc" 3 - file-types = [{ glob = "Library/Application Support/Code/User/settings.json" }] 4 - 1 + # brewfile 5 2 [[language]] 6 3 name = "ruby" 7 4 file-types = [{ glob = ".Brewfile" }] 5 + 6 + # ghostty 7 + [[language]] 8 + name = "ghostty" 9 + file-types = [ 10 + # extend the original 11 + # https://github.com/helix-editor/helix/blob/25.07.1/languages.toml#L4293 12 + { glob = "ghostty/config" }, 13 + { glob = ".config/ghostty/themes/*" }, 14 + ] 15 + 16 + # vs code settings json 17 + [[language]] 18 + name = "jsonc" 19 + file-types = [{ glob = "Library/Application Support/Code/User/settings.json" }]