lsp-mode の設定を晒す (2021-02-06 時点)
自分の設定を晒す。
(lsp-document-sync-method . 'lsp--sync-incremental)
がコメントアウトされているが、他の記事に書いてあったこの設定を入れていたらlspがちゃんと動かなかったので、指定を外した。
こういう設定系は誰かが最新の環境で動くものを晒さないと構成のためにならないと思うので、自分も書いておく。
(leaf lsp-mode :doc "LSP mode" :req "emacs-26.1" "dash-2.14.1" "dash-functional-2.14.1" "f-0.20.0" "ht-2.0" "spinner-1.7.3" "markdown-mode-2.3" "lv-0" :tag "languages" "emacs>=26.1" :added "2020-08-27" :url "https://github.com/emacs-lsp/lsp-mode" :emacs>= 26.1 :ensure t :after spinner markdown-mode lv :custom `((lsp-keymap-prefix . "C-c l") (lsp-inhibit-message . t) (lsp-message-project-root-warning . t) (create-lockfiles . nil) (lsp-signature-auto-activate . t) (lsp-signature-doc-lines . 1) (lsp-print-performance . t) (lsp-log-io . t) (lsp-eldoc-render-all . t) (lsp-enable-completion-at-point . t) (lsp-enable-xref . t) (lsp-keep-workspace-alive . nil) (lsp-enable-snippet . t) (lsp-server-trace . nil) (lsp-auto-guess-root . nil) ;; (lsp-document-sync-method . 'lsp--sync-incremental) (lsp-document-sync-method . 2) (lsp-diagnostics-provider . :flycheck) (lsp-response-timeout . 5) (lsp-idle-delay . 0.500) (lsp-enable-file-watchers . nil) (lsp-completion-provider . :capf) (lsp-headerline-breadcrumb-segments . '(symbols))) :commands (lsp lsp-deferred) :hook (prog-major-mode . lsp-prog-major-mode-enable) (lsp-mode-hook . lsp-ui-mode) (lsp-mode-hook . lsp-headerline-breadcrumb-mode) :init (leaf lsp-ui :doc "UI modules for lsp-mode" :req "emacs-26.1" "dash-2.14" "dash-functional-1.2.0" "lsp-mode-6.0" "markdown-mode-2.3" :tag "tools" "languages" "emacs>=26.1" :added "2020-08-27" :url "https://github.com/emacs-lsp/lsp-ui" :emacs>= 26.1 :ensure t :after lsp-mode markdown-mode :custom ((lsp-ui-doc-enable . t) (lsp-ui-doc-deley . 0.5) (lsp-ui-doc-header . t) (lsp-ui-doc-include-signature . t) (lsp-ui-doc-position . 'at-point) (lsp-ui-doc-max-width . 150) (lsp-ui-doc-max-height . 30) (lsp-ui-doc-use-childframe . nil) (lsp-ui-doc-use-webkit . nil) (lsp-ui-flycheck-enable . t) (lsp-ui-peek-enable . t) (lsp-ui-peek-peek-height . 20) (lsp-ui-peek-list-width . 50) (lsp-ui-peek-fontify . 'on-demand) ;; never, on-demand, or always ) :hook ((lsp-mode-hook . lsp-ui-mode)) ) (leaf lsp-treemacs :doc "LSP treemacs" :req "emacs-26.1" "dash-2.14.1" "dash-functional-2.14.1" "f-0.20.0" "ht-2.0" "treemacs-2.5" "lsp-mode-6.0" :tag "languages" "emacs>=26.1" :added "2020-10-22" :url "https://github.com/emacs-lsp/lsp-treemacs" :emacs>= 26.1 :ensure t :after treemacs lsp-mode) )
なお動作環境は Emacs 28.0.50。
起動時に Warning (comp): el-get-status.el:22:1: Warning: Package cl is deprecated
みたいなのが出まくるんだけど。
init.el に
(setq byte-compile-warnings '(not cl-functions obsolete))
を書いているのに直らない。
Emacs-27 では出なかったんだけど、既知の問題なんだろうか?
鬱陶しいだけなのだが、鬱陶しいのでなんとかしたい…。
だれか教えてください。