summary refs log tree commit diff
path: root/config/init-lsp.el
blob: 9ad6f405fc801db819a619baf995618ec7c7b0a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;; init-lsp.el --- Configure LSP integration -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; Commentary:

;; Configure LSP integration

;;; Code:

(use-package eglot
  :after yasnippet
  :bind (:map eglot-mode-map
              ("C-c l a" . eglot-code-actions)
              ("C-c l r" . eglot-rename)
	      ("C-c l f" . eglot-format))
  :config
  (setq eglot-autoshutdown t)
  (setq-default eglot-workspace-configuration
                '((gopls
		   (usePlaceholders . t)
		   (staticcheck . t)
		   (completeUnimported . t))))

  ;; uses https://github.com/nix-community/nixd for the LSP server instead of rnix
  (add-to-list 'eglot-server-programs '(nix-mode . ("nixd"))))

(provide 'init-lsp)

;;; init-lsp.el ends here