commit 09a1f85bdfa6ac58b164e7a032549e86bd675828
parent 9b6bbdda14bb397652742ed5f39f003949f43672
Author: Cem Keylan <cem@ckyln.com>
Date: Sat, 17 Oct 2020 13:35:03 +0300
add gkroam
Diffstat:
M | init.org | | | 28 | ++++++++++++++++++++++++++-- |
1 file changed, 26 insertions(+), 2 deletions(-)
diff --git a/init.org b/init.org
@@ -370,7 +370,6 @@ I am quite serious on this vim stuff now. I want it everywhere.
Now that we have initialized those packages, let's configure them some further.
-
*** doct
DOCT (declarative org capture templates) is a tool for easily managing capture
@@ -423,6 +422,31 @@ templates. It makes it much simpler to read and edit templates.
"** Instructions"))))))
#+END_SRC
+*** gkroam
+
+#+BEGIN_SRC emacs-lisp
+ (use-package gkroam
+ :straight t
+ :custom
+ (gkroam-root-dir "~/org/roam")
+ (gkroam-prettify-p t)
+ (gkroam-show-brackets-p t)
+ (gkroam-use-default-filename t)
+ (gkroam-window-margin 4)
+ :bind
+ (("C-c r I" . gkroam-index)
+ ("C-c r d" . gkroam-daily)
+ ("C-c r f" . gkroam-find)
+ ("C-c r i" . gkroam-insert)
+ ("C-c r c" . gkroam-capture)
+ ("C-c r e" . gkroam-link-edit)
+ ("C-c r n" . gkroam-smart-new)
+ ("C-c r p" . gkroam-toggle-prettify)
+ ("C-c r t" . gkroam-toggle-brackets)
+ ("C-c r D" . gkroam-toggle-dynamic)
+ ("C-c r g" . gkroam-update)))
+#+END_SRC
+
** Magit
I like magit, it is quite useful when you don't want to leave emacs and you have
@@ -677,7 +701,7 @@ the other lines.
#+BEGIN_SRC emacs-lisp
(use-package linum-relative
:straight t
- :bind ("C-c r" . display-line-numbers-mode)
+ :bind ("C-c r r" . display-line-numbers-mode)
:custom
(linum-relative-current-symbol "")
(display-line-numbers-type 'visual)