Compare commits

...

2 commits

Author SHA1 Message Date
Trolli Schmittlauch 60d896e303 vscodium: basic enabling of nixd LSP
still requires further config to fully use fc-nixos specifics
2024-07-09 22:08:40 +02:00
Trolli Schmittlauch 72529950c2 vscodium: use neovim binary from nix store directly 2024-07-09 22:08:40 +02:00

View file

@ -77,6 +77,10 @@
"editor.formatOnType" = false;
};
"nix.formatterPath" = lib.getExe pkgs.nixfmt-rfc-style;
"nix.enableLanguageServer" = true;
"nix.serverPath" = lib.getExe pkgs.nixd;
"nix.serverSettings" = {
};
"editor.fontSize" = 13;
"editor.fontWeight" = "normal";
"git.detectSubmodulesLimit" = 30;
@ -109,7 +113,7 @@
};
"editor.renderWhitespace" = "all";
"editor.fontFamily" = "Iosevka Curly Slab, Menlo, Monaco, 'Courier New', monospace";
"vim.neovimPath" = "/Users/os/.nix-profile/bin/nvim";
"vim.neovimPath" = lib.getExe pkgs.myVim;
"sync-rsync.options" = [ ];
};
};