diff options
author | Soispha <soispha@vhack.eu> | 2024-02-14 15:14:45 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-14 15:14:45 +0100 |
commit | 7c1cea5e42d6ca996ecb4c8340fadcde2b1e0f3b (patch) | |
tree | 6341cc89ae022d6bc54754259ef5987b08224e85 | |
parent | feat(hm/conf/nix/plgs/lsp/servers/openscad): Init (diff) | |
download | nixos-config-7c1cea5e42d6ca996ecb4c8340fadcde2b1e0f3b.tar.gz nixos-config-7c1cea5e42d6ca996ecb4c8340fadcde2b1e0f3b.zip |
fix(hm/conf/nix/plgs/lsp/s/openscad): GNU is unfortunately not the best format
-rw-r--r-- | hm/soispha/conf/nvim/plgs/lsp/servers/servers/openscad.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/nvim/plgs/lsp/servers/servers/openscad.nix b/hm/soispha/conf/nvim/plgs/lsp/servers/servers/openscad.nix index c064042b..a0221cc4 100644 --- a/hm/soispha/conf/nvim/plgs/lsp/servers/servers/openscad.nix +++ b/hm/soispha/conf/nvim/plgs/lsp/servers/servers/openscad.nix @@ -6,7 +6,7 @@ */ '' require('lspconfig').openscad_lsp.setup{ - cmd = {"openscad-lsp", "--stdio", "--fmt-style", "GNU"}, + cmd = {"openscad-lsp", "--stdio", "--fmt-style", "WebKit"}, } ''; extraPackages = with pkgs; [ |