mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 16:11:34 +09:00
🍺 org roam fix
This commit is contained in:
@ -314,6 +314,7 @@ https://nathantypanski.com/blog/2014-08-03-a-vim-like-emacs-config.html
|
|||||||
(setq face-font-rescale-alist
|
(setq face-font-rescale-alist
|
||||||
'((".*Noto Sans CJK KR*" . 1.5)))
|
'((".*Noto Sans CJK KR*" . 1.5)))
|
||||||
(setq-default line-spacing 2)
|
(setq-default line-spacing 2)
|
||||||
|
;;(global-prettify-symbols-mode +1)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Text Scale Key bindings
|
** Text Scale Key bindings
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
@ -431,6 +432,7 @@ https://nathantypanski.com/blog/2014-08-03-a-vim-like-emacs-config.html
|
|||||||
;;:hook (company-mode . company-box-mode))
|
;;:hook (company-mode . company-box-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
+ ORG mode =#+= Candidates
|
+ ORG mode =#+= Candidates
|
||||||
https://emacs.stackexchange.com/a/30691
|
https://emacs.stackexchange.com/a/30691
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
@ -448,6 +450,24 @@ https://emacs.stackexchange.com/a/30691
|
|||||||
(ignore-case t)
|
(ignore-case t)
|
||||||
(duplicates t)))
|
(duplicates t)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** Consult
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(defun dw/get-project-root ()
|
||||||
|
(when (fboundp 'projectile-project-root)
|
||||||
|
(projectile-project-root)))
|
||||||
|
|
||||||
|
(use-package consult
|
||||||
|
:demand t
|
||||||
|
:bind (("C-s" . consult-line)
|
||||||
|
("C-M-l" . consult-imenu)
|
||||||
|
("C-M-j" . persp-switch-to-buffer*)
|
||||||
|
:map minibuffer-local-map
|
||||||
|
("C-r" . consult-history))
|
||||||
|
:custom
|
||||||
|
(consult-project-root-function #'dw/get-project-root)
|
||||||
|
(completion-in-region-function #'consult-completion-in-region))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Prescient
|
** Prescient
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package prescient
|
(use-package prescient
|
||||||
@ -742,14 +762,22 @@ https://emacs.stackexchange.com/a/30691
|
|||||||
** Org Roam
|
** Org Roam
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package org-roam
|
(use-package org-roam
|
||||||
:straight t
|
:ensure t
|
||||||
:hook
|
:init
|
||||||
(after-init . org-roam-mode)
|
|
||||||
:custom
|
|
||||||
(org-roam-directory "~/Roam/")
|
|
||||||
(org-roam-completion-everywhere t)
|
|
||||||
(org-roam-completion-system 'ivy))
|
|
||||||
(setq org-roam-v2-ack t)
|
(setq org-roam-v2-ack t)
|
||||||
|
:custom
|
||||||
|
(org-roam-directory "~/Roam/NewStart")
|
||||||
|
(org-roam-completion-everywhere t)
|
||||||
|
(org-roam-completion-system 'ivy)
|
||||||
|
:bind
|
||||||
|
(:map org-mode-map
|
||||||
|
("C-M-i" . completion-at-point))
|
||||||
|
:config
|
||||||
|
(org-roam-setup))
|
||||||
|
(ju/leader-key-def
|
||||||
|
"rl" 'org-roam-buffer-toggle
|
||||||
|
"rf" 'org-roam-node-find
|
||||||
|
"ri" 'org-roam-node-insert)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Org Roam Server
|
** Org Roam Server
|
||||||
+ DEPRECATED ( ORG-ROAM V2 )
|
+ DEPRECATED ( ORG-ROAM V2 )
|
||||||
|
|||||||
Reference in New Issue
Block a user