aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-04-18 05:49:43 +0100
committerdx <aryadevchavali1@gmail.com>2020-04-18 05:49:43 +0100
commit48723f77c03d1a0f5ec87ac64d0e6613808e406f (patch)
tree16a046258b8f0ff4c35d12af49d1879176af5a78
parent47adab9d18a5f14d501a9ffb27887a4501bf1792 (diff)
downloaddotfiles-48723f77c03d1a0f5ec87ac64d0e6613808e406f.tar.gz
dotfiles-48723f77c03d1a0f5ec87ac64d0e6613808e406f.tar.bz2
dotfiles-48723f77c03d1a0f5ec87ac64d0e6613808e406f.zip
~split dap into two sections
-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