Compare commits
2 Commits
dae83ddfea
...
d71a35720f
Author | SHA1 | Date | |
---|---|---|---|
|
d71a35720f | ||
|
83c8819b26 |
43
README.org
43
README.org
@@ -759,14 +759,6 @@ If you use =org= and don't want your org files in the default location below, ch
|
|||||||
(org-colors-dracula))
|
(org-colors-dracula))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
**** Superstar
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp :tangle config.el
|
|
||||||
(setq org-superstar-headline-bullets-list '("◉" "●" "○" "◆" "●" "○" "◆"))
|
|
||||||
(setq org-superstar-item-bullet-alist '((?+ . ?➤) (?- . ?✦))) ; changes +/- symbols in item lists
|
|
||||||
(add-hook! org-mode (org-superstar-mode))
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
*** Markdown
|
*** Markdown
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp :tangle config.el
|
#+BEGIN_SRC emacs-lisp :tangle config.el
|
||||||
@@ -821,41 +813,6 @@ Revert buffers when the underlying file has changed
|
|||||||
|
|
||||||
*** Debugging
|
*** Debugging
|
||||||
|
|
||||||
**** Keybindings
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp :tangle config.el
|
|
||||||
(map! :map dap-mode-map
|
|
||||||
:leader
|
|
||||||
:prefix ("d" . "dap")
|
|
||||||
;; basics
|
|
||||||
:desc "dap next" "n" #'dap-next
|
|
||||||
:desc "dap step in" "i" #'dap-step-in
|
|
||||||
:desc "dap step out" "o" #'dap-step-out
|
|
||||||
:desc "dap continue" "c" #'dap-continue
|
|
||||||
:desc "dap hydra" "h" #'dap-hydra
|
|
||||||
:desc "dap debug restart" "r" #'dap-debug-restart
|
|
||||||
:desc "dap debug" "s" #'dap-debug
|
|
||||||
|
|
||||||
;; debug
|
|
||||||
:prefix ("dd" . "Debug")
|
|
||||||
:desc "dap debug recent" "r" #'dap-debug-recent
|
|
||||||
:desc "dap debug last" "l" #'dap-debug-last
|
|
||||||
|
|
||||||
;; eval
|
|
||||||
:prefix ("de" . "Eval")
|
|
||||||
:desc "eval" "e" #'dap-eval
|
|
||||||
:desc "eval region" "r" #'dap-eval-region
|
|
||||||
:desc "eval thing at point" "s" #'dap-eval-thing-at-point
|
|
||||||
:desc "add expression" "a" #'dap-ui-expressions-add
|
|
||||||
:desc "remove expression" "d" #'dap-ui-expressions-remove
|
|
||||||
|
|
||||||
:prefix ("db" . "Breakpoint")
|
|
||||||
:desc "dap breakpoint toggle" "b" #'dap-breakpoint-toggle
|
|
||||||
:desc "dap breakpoint condition" "c" #'dap-breakpoint-condition
|
|
||||||
:desc "dap breakpoint hit count" "h" #'dap-breakpoint-hit-condition
|
|
||||||
:desc "dap breakpoint log message" "l" #'dap-breakpoint-log-message)
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
**** Python
|
**** Python
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp :tangle config.el
|
#+BEGIN_SRC emacs-lisp :tangle config.el
|
||||||
|
35
config.el
35
config.el
@@ -158,10 +158,6 @@
|
|||||||
;; Load our desired org-colors-* theme on startup
|
;; Load our desired org-colors-* theme on startup
|
||||||
(org-colors-dracula))
|
(org-colors-dracula))
|
||||||
|
|
||||||
(setq org-superstar-headline-bullets-list '("◉" "●" "○" "◆" "●" "○" "◆"))
|
|
||||||
(setq org-superstar-item-bullet-alist '((?+ . ?➤) (?- . ?✦))) ; changes +/- symbols in item lists
|
|
||||||
(add-hook! org-mode (org-superstar-mode))
|
|
||||||
|
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
'(markdown-header-face ((t (:inherit font-lock-function-name-face :weight bold :family "variable-pitch"))))
|
'(markdown-header-face ((t (:inherit font-lock-function-name-face :weight bold :family "variable-pitch"))))
|
||||||
'(markdown-header-face-1 ((t (:inherit markdown-header-face :height 1.8))))
|
'(markdown-header-face-1 ((t (:inherit markdown-header-face :height 1.8))))
|
||||||
@@ -184,37 +180,6 @@
|
|||||||
(lambda () (rainbow-mode 1)))
|
(lambda () (rainbow-mode 1)))
|
||||||
(global-rainbow-mode 1)
|
(global-rainbow-mode 1)
|
||||||
|
|
||||||
(map! :map dap-mode-map
|
|
||||||
:leader
|
|
||||||
:prefix ("d" . "dap")
|
|
||||||
;; basics
|
|
||||||
:desc "dap next" "n" #'dap-next
|
|
||||||
:desc "dap step in" "i" #'dap-step-in
|
|
||||||
:desc "dap step out" "o" #'dap-step-out
|
|
||||||
:desc "dap continue" "c" #'dap-continue
|
|
||||||
:desc "dap hydra" "h" #'dap-hydra
|
|
||||||
:desc "dap debug restart" "r" #'dap-debug-restart
|
|
||||||
:desc "dap debug" "s" #'dap-debug
|
|
||||||
|
|
||||||
;; debug
|
|
||||||
:prefix ("dd" . "Debug")
|
|
||||||
:desc "dap debug recent" "r" #'dap-debug-recent
|
|
||||||
:desc "dap debug last" "l" #'dap-debug-last
|
|
||||||
|
|
||||||
;; eval
|
|
||||||
:prefix ("de" . "Eval")
|
|
||||||
:desc "eval" "e" #'dap-eval
|
|
||||||
:desc "eval region" "r" #'dap-eval-region
|
|
||||||
:desc "eval thing at point" "s" #'dap-eval-thing-at-point
|
|
||||||
:desc "add expression" "a" #'dap-ui-expressions-add
|
|
||||||
:desc "remove expression" "d" #'dap-ui-expressions-remove
|
|
||||||
|
|
||||||
:prefix ("db" . "Breakpoint")
|
|
||||||
:desc "dap breakpoint toggle" "b" #'dap-breakpoint-toggle
|
|
||||||
:desc "dap breakpoint condition" "c" #'dap-breakpoint-condition
|
|
||||||
:desc "dap breakpoint hit count" "h" #'dap-breakpoint-hit-condition
|
|
||||||
:desc "dap breakpoint log message" "l" #'dap-breakpoint-log-message)
|
|
||||||
|
|
||||||
(after! dap-mode
|
(after! dap-mode
|
||||||
(setq dap-python-debugger 'debugpy))
|
(setq dap-python-debugger 'debugpy))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user