Compare commits

...

2 Commits

Author SHA1 Message Date
Nathan McCarty 20dcb63b3f
Add keybinding for lsp-workspace-restart 2023-05-29 00:05:57 -04:00
Nathan McCarty 2c9baefdf4
Enable org-collector 2023-05-29 00:03:41 -04:00
1 changed files with 16 additions and 0 deletions

View File

@ -821,6 +821,12 @@ Extend the day until around 3AM, for those days with late bed time
(setq org-extend-today-until 4
org-use-effective-time t))
#+end_src
*** org collector
Provides nice tables from the properties of an item
#+begin_src emacs-lisp
(after! org
(add-to-list 'org-modules 'org-collector))
#+end_src
** Babel config
*** Ansi colors
First, bring in ~ansi-color~
@ -960,6 +966,16 @@ Show the documentation in a popup frame in the top right corner
lsp-ui-doc-position 'top
lsp-ui-doc-show-with-cursor t))
#+end_src
*** Keybindings
Add some additional keybinds:
- ~SPC z l r~ to restart the lsp workspac
#+begin_src emacs-lisp
(after! lsp-mode
(map! :leader
(:prefix ("z l" . "lsp")
"r" #'lsp-workspace-restart)))
#+end_src
e
** Rust
Configuration specific for rust
*** LSP Tweaks