all repos — nixfiles @ 7bde47a9659aaf83a5603fb0a362fa248e9e72e6

System and user configuration, managed by nix and home-manager

configure nil LSP settings correctly
Alan Pearce alan@alanpearce.eu
Sat, 01 Jun 2024 20:08:09 +0200
commit

7bde47a9659aaf83a5603fb0a362fa248e9e72e6

parent

198a6cdd4ca5867702a8638ad2e51f2dffedd450

2 files changed, 13 insertions(+), 7 deletions(-)

jump to
M user/emacs/init.eluser/emacs/init.el
@@ -1113,7 +1113,7 @@ (push 'flymake-eldoc-function eldoc-documentation-functions))             (add-hook 'eglot-managed-mode-hook 'my/setup-eglot-eldoc)
             (setq-default eglot-workspace-configuration
                           '( :yaml (:keyOrdering nil)
-                             :nix (:autoArchive t)
+                             :nil (:nix (:flake (:autoArchive t)))
                              :gopls ( :staticcheck t
                                       :usePlaceholders t)))
             (defun my/eglot-capf ()
M user/settings/neovim.nixuser/settings/neovim.nix
@@ -31,16 +31,22 @@ coc = {       enable = true;
       settings = {
         "json.enable" = true;
-        "suggest.enablePreview" = true;
-        "coc.preferences.formatOnSaveFiletypes" = [ "nix" ];
-        "nil.formatting.command" = "nixpkgs-fmt";
-        semantictokens = {
-          filetypes = [ "nix" ];
-        };
         languageserver = {
           nix = {
             command = "${pkgs.nil}/bin/nil";
             filetypes = [ "nix" ];
+            rootPatterns = [ "flake.nix" ];
+            settings = {
+              coc.preferences.formatOnSaveFiletypes = [ "nix" ];
+              links.tooltip = true;
+              semanticTokens = {
+                filetypes = [ "nix" ];
+              };
+              nil = {
+                formatting.command = [ "nixpkgs-fmt" ];
+                nix.flake.autoArchive = true;
+              };
+            };
           };
           lua = {
             command = "${pkgs.lua-language-server}/bin/lua-language-server";