about summary refs log tree commit diff
path: root/users/glittershark/emacs.d/rust.el
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/emacs.d/rust.el')
-rw-r--r--users/glittershark/emacs.d/rust.el18
1 files changed, 15 insertions, 3 deletions
diff --git a/users/glittershark/emacs.d/rust.el b/users/glittershark/emacs.d/rust.el
index 1976ed7c9e..35d2151d30 100644
--- a/users/glittershark/emacs.d/rust.el
+++ b/users/glittershark/emacs.d/rust.el
@@ -1,16 +1,19 @@
 ;;; ../code/depot/users/glittershark/emacs.d/rust.el -*- lexical-binding: t; -*-
 
-; (setq lsp-rust-analyzer-cargo-watch-command "clippy")
-
 (add-to-list 'auto-mode-alist '("\\.rs$" . rust-mode))
 
 (defun grfn/rust-setup ()
   (interactive)
+
+  (push '(?> . ("<" . ">")) evil-surround-pairs-alist)
+
   (setq lsp-rust-server 'rust-analyzer)
   (setq-local whitespace-line-column 100
               fill-column 100)
-  (setq-local rustic-format-trigger 'on-save)
   (setq rust-format-show-buffer nil)
+  (setq lsp-rust-analyzer-import-merge-behaviour "last"
+        lsp-rust-analyzer-cargo-watch-command "clippy"
+        lsp-ui-doc-enable t)
   (rust-enable-format-on-save)
   (lsp))
 
@@ -22,3 +25,12 @@
   :n "g R" #'lsp-find-references
   (:localleader
    "m" #'lsp-rust-analyzer-expand-macro)))
+
+(comment
+ (flycheck-get-next-checkers 'lsp)
+ (flycheck-add-next-checker)
+ (flycheck-get-next-checkers 'lsp)
+ )
+
+(set-company-backend! 'rust-mode
+  '(:separate company-capf company-yasnippet))