about summary refs log tree commit diff stats
path: root/tutorial/task4-initial.png
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/task4-initial.png')
-rw-r--r--tutorial/task4-initial.pngbin10950 -> 10942 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/tutorial/task4-initial.png b/tutorial/task4-initial.png
index 99b5514a..c02aba9b 100644
--- a/tutorial/task4-initial.png
+++ b/tutorial/task4-initial.png
Binary files differ
10:06:56 +0000 Add emacs prelude config' href='/djm/dotfiles/commit/emacs-prelude/personal/lisp/init-lsp.el?id=b5e8c2052c43e9865aad35380ff0b36cabae19d2'>b5e8c20 ^
3fbaf48 ^
b5e8c20 ^

3fbaf48 ^
64ca29b ^

b5e8c20 ^


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
                     

                  



                                             








                                             
                                            
                                           
                                

                                                            
                                  

                                                      


                   
(use-package lsp-mode
  :diminish
  :after key-chord
  :hook (clojure-mode . lsp)
  :config
  (setq gc-cons-threshold (* 100 1024 1024)
        read-process-output-max (* 1024 1024)
        lsp-ui-doc-delay 1
        lsp-lens-enable nil
        lsp-ui-doc-enable t
        lsp-ui-doc-show-with-cursor t
        lsp-ui-doc-show-with-mouse t
        lsp-headerline-breadcrumb-enable nil
        lsp-enable-symbol-highlighting t
        lsp-ui-sideline-show-diagnostics t
        lsp-ui-sideline-show-code-actions nil
        lsp-modeline-code-actions-enable nil
        lsp-modeline-diagnostics-enable nil
        lsp-ui-doc-position 'top
        ;; user cider for indendation and completion instead
        lsp-enable-indentation nil
        lsp-completion-enable nil)
  (key-chord-define-global "QQ" 'lsp-find-references)
  (key-chord-define-global "GG" 'lsp-find-definition))

(provide 'init-lsp)