aboutsummaryrefslogtreecommitdiff
path: root/doom.d/org
diff options
context:
space:
mode:
Diffstat (limited to 'doom.d/org')
-rw-r--r--doom.d/org/config.org14
1 files changed, 9 insertions, 5 deletions
diff --git a/doom.d/org/config.org b/doom.d/org/config.org
index 6dcf166..c3a05bb 100644
--- a/doom.d/org/config.org
+++ b/doom.d/org/config.org
@@ -38,8 +38,9 @@ Some quality of life things and others that I couldn't really put in one categor
* Package Config
Config for or based heavily around specific packages that I find very important
** 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
- *<SPC>cD* starts up the routine
#+BEGIN_SRC elisp
@@ -48,15 +49,18 @@ A keybind and a routine
(interactive)
(dap-ui-mode)
(dap-ui-locals)
- (dap-ui-sessions))
+ (dap-ui-sessions)))
+#+END_SRC
+*** Keybind
+#+BEGIN_SRC elisp
(map!
+ :after dap-mode
:leader
- :desc "Start debugging setup" "cD" #'oreodave/debug))
+ :desc "Start debugging setup" "cD" #'oreodave/debug)
#+END_SRC
** Elfeed
Custom functions to work with elfeed, generating new feeds on demand and adding
a keybind to help with that.
-
*** Feeds
Feeds for elfeed to download from.
#+BEGIN_SRC elisp