Compare commits

...

3 commits

Author SHA1 Message Date
e1828378aa
Use external JuliaFormatter in Zed config
Zed and the Julia LSP seem to be arguing a
lot lately, and that breaks my blue-styled
code. Use the JuliaFormatter as an external
command to get code formatting on save even
when the Julia LSP crashes.
2025-04-19 19:06:26 -05:00
868d13a9fb
add Gnu Gzip b/c zcat isn't broken in it
zcat is broken on MacOS so it doesn't
function the same as on Gnu systems. Add
the Gnu variant to packages just like just
about every other coreutil at this point.
2025-04-19 19:05:04 -05:00
d0baefc82e
feat: Add R extension to Zed 2025-04-19 19:03:41 -05:00
2 changed files with 13 additions and 0 deletions

View file

@ -10,6 +10,7 @@
git-absorb
gnugrep
gnused
gzip
htop
jq
julia-bin

View file

@ -12,6 +12,7 @@
"latex"
"macos-classic"
"nix"
"r"
"toml"
"xml"
];
@ -27,6 +28,17 @@
buffer_font_size = 11;
features = { edit_prediction_provider = "zed"; };
languages = {
Julia = {
formatter = {
external = {
command = "julia";
arguments = [
"-e"
"using JuliaFormatter; print(format_text(String(read(stdin))));"
];
};
};
};
Nix = { formatter = { external = { command = "nixfmt"; }; }; };
};
preview_tabs = { enabled = false; };