~split dap into two sections
This commit is contained in:
@@ -38,8 +38,9 @@ Some quality of life things and others that I couldn't really put in one categor
|
|||||||
* Package Config
|
* Package Config
|
||||||
Config for or based heavily around specific packages that I find very important
|
Config for or based heavily around specific packages that I find very important
|
||||||
** DAP
|
** DAP
|
||||||
A keybind and a routine
|
*** oreodave/debug
|
||||||
|
First to setup is a routine for setting up all the dap-panes for debugging.
|
||||||
|
Easier to do than just running all those functions manually
|
||||||
- Routine sets up the panes that I like to use, instead of M-x'ing it
|
- Routine sets up the panes that I like to use, instead of M-x'ing it
|
||||||
- *<SPC>cD* starts up the routine
|
- *<SPC>cD* starts up the routine
|
||||||
#+BEGIN_SRC elisp
|
#+BEGIN_SRC elisp
|
||||||
@@ -48,15 +49,18 @@ A keybind and a routine
|
|||||||
(interactive)
|
(interactive)
|
||||||
(dap-ui-mode)
|
(dap-ui-mode)
|
||||||
(dap-ui-locals)
|
(dap-ui-locals)
|
||||||
(dap-ui-sessions))
|
(dap-ui-sessions)))
|
||||||
|
#+END_SRC
|
||||||
|
*** Keybind
|
||||||
|
#+BEGIN_SRC elisp
|
||||||
(map!
|
(map!
|
||||||
|
:after dap-mode
|
||||||
:leader
|
:leader
|
||||||
:desc "Start debugging setup" "cD" #'oreodave/debug))
|
:desc "Start debugging setup" "cD" #'oreodave/debug)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Elfeed
|
** Elfeed
|
||||||
Custom functions to work with elfeed, generating new feeds on demand and adding
|
Custom functions to work with elfeed, generating new feeds on demand and adding
|
||||||
a keybind to help with that.
|
a keybind to help with that.
|
||||||
|
|
||||||
*** Feeds
|
*** Feeds
|
||||||
Feeds for elfeed to download from.
|
Feeds for elfeed to download from.
|
||||||
#+BEGIN_SRC elisp
|
#+BEGIN_SRC elisp
|
||||||
|
|||||||
Reference in New Issue
Block a user