This commit is contained in:
Alexander Bantyev 2020-12-04 13:20:51 +03:00
parent 17c1b4a7f5
commit eeac893163
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
2 changed files with 10 additions and 0 deletions

View File

@ -48,6 +48,7 @@
rust-mode
go-mode
edit-indirect
lsp-mode
];
};

View File

@ -217,4 +217,13 @@ If point was already at that position, move point to beginning of line."
(setq inhibit-startup-screen t)
(use-package lsp-mode
:config
(add-to-list 'lsp-language-id-configuration '(nix-mode . "nix"))
(lsp-register-client
(make-lsp-client :new-connection (lsp-stdio-connection '("rnix-lsp"))
:major-modes '(nix-mode)
:server-id 'nix))
)
;;; init.el ends here