Compare commits
2 Commits
23164d1f86
...
20dcb63b3f
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | 20dcb63b3f | |
Nathan McCarty | 2c9baefdf4 |
16
config.org
16
config.org
|
@ -821,6 +821,12 @@ Extend the day until around 3AM, for those days with late bed time
|
||||||
(setq org-extend-today-until 4
|
(setq org-extend-today-until 4
|
||||||
org-use-effective-time t))
|
org-use-effective-time t))
|
||||||
#+end_src
|
#+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
|
** Babel config
|
||||||
*** Ansi colors
|
*** Ansi colors
|
||||||
First, bring in ~ansi-color~
|
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-position 'top
|
||||||
lsp-ui-doc-show-with-cursor t))
|
lsp-ui-doc-show-with-cursor t))
|
||||||
#+end_src
|
#+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
|
** Rust
|
||||||
Configuration specific for rust
|
Configuration specific for rust
|
||||||
*** LSP Tweaks
|
*** LSP Tweaks
|
||||||
|
|
Loading…
Reference in New Issue