Compare commits
No commits in common. "2b81dc2ebc0c5eb6c6d7ea1eb08fbdce5d871e9e" and "acf1593a8df4e7fa74c0c70816f11a0d7ca65b96" have entirely different histories.
2b81dc2ebc
...
acf1593a8d
13
config.org
13
config.org
|
@ -35,6 +35,7 @@
|
||||||
- [[#graph-browser][Graph browser]]
|
- [[#graph-browser][Graph browser]]
|
||||||
- [[#roam-link-font-face][Roam link font face]]
|
- [[#roam-link-font-face][Roam link font face]]
|
||||||
- [[#roam-capture-template][Roam capture template]]
|
- [[#roam-capture-template][Roam capture template]]
|
||||||
|
- [[#org-roam-server][Org Roam Server]]
|
||||||
- [[#export-backends][Export backends]]
|
- [[#export-backends][Export backends]]
|
||||||
- [[#doom-specific][Doom specific]]
|
- [[#doom-specific][Doom specific]]
|
||||||
- [[#magit][Magit]]
|
- [[#magit][Magit]]
|
||||||
|
@ -412,7 +413,7 @@ First, set a directory where =org-roam= will index things.
|
||||||
Instruct =org-roam= to use =firefox-developer-edition= to open the graph:
|
Instruct =org-roam= to use =firefox-developer-edition= to open the graph:
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq org-roam-graph-viewer (executable-find "firefox"))
|
(setq org-roam-graph-viewer (executable-find "firefox-developer-edition"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** Roam link font face
|
*** Roam link font face
|
||||||
|
@ -476,6 +477,16 @@ directory instead of at the root.
|
||||||
:head "#+TITLE: %<%Y-%m-%d>"))))
|
:head "#+TITLE: %<%Y-%m-%d>"))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
*** Org Roam Server
|
||||||
|
|
||||||
|
=org-roam-server= provides a fancy JS interface to visualize the graph. Just
|
||||||
|
needs to be loaded, along with its dependency =simple-httpd=.
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package! simple-httpd)
|
||||||
|
(use-package! org-roam-server)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
** Export backends
|
** Export backends
|
||||||
|
|
||||||
Sometimes I need to export an Org subtree to a file, which is quite easy with
|
Sometimes I need to export an Org subtree to a file, which is quite easy with
|
||||||
|
|
6
init.el
6
init.el
|
@ -86,7 +86,7 @@
|
||||||
:tools
|
:tools
|
||||||
;;ansible
|
;;ansible
|
||||||
;;debugger ; FIXME stepping through code, to help you add bugs
|
;;debugger ; FIXME stepping through code, to help you add bugs
|
||||||
direnv
|
;;direnv
|
||||||
docker
|
docker
|
||||||
;;editorconfig ; let someone else argue about tabs vs spaces
|
;;editorconfig ; let someone else argue about tabs vs spaces
|
||||||
;;ein ; tame Jupyter notebooks with emacs
|
;;ein ; tame Jupyter notebooks with emacs
|
||||||
|
@ -172,14 +172,14 @@
|
||||||
yaml ; JSON, but readable
|
yaml ; JSON, but readable
|
||||||
|
|
||||||
:email
|
:email
|
||||||
;;(mu4e)
|
(mu4e)
|
||||||
;;notmuch
|
;;notmuch
|
||||||
;;(wanderlust +gmail)
|
;;(wanderlust +gmail)
|
||||||
|
|
||||||
:app
|
:app
|
||||||
;;calendar
|
;;calendar
|
||||||
;;irc ; how neckbeards socialize
|
;;irc ; how neckbeards socialize
|
||||||
;;(rss +org) ; emacs as an RSS reader
|
(rss +org) ; emacs as an RSS reader
|
||||||
;;twitter ; twitter client https://twitter.com/vnought
|
;;twitter ; twitter client https://twitter.com/vnought
|
||||||
|
|
||||||
:config
|
:config
|
||||||
|
|
|
@ -48,10 +48,12 @@
|
||||||
|
|
||||||
;; solaire mode breaks TUI when using the emacs daemon...
|
;; solaire mode breaks TUI when using the emacs daemon...
|
||||||
(package! solaire-mode :disable t)
|
(package! solaire-mode :disable t)
|
||||||
|
(package! simple-httpd)
|
||||||
|
(package! org-roam-server
|
||||||
|
:recipe (:host github :repo "org-roam/org-roam-server"))
|
||||||
|
|
||||||
;; C/C++ mode adds this, and I don't really need it
|
;; C/C++ mode adds this, and I don't really need it
|
||||||
(package! irony :disable t)
|
(package! irony :disable t)
|
||||||
|
|
||||||
(package! beancount-mode
|
(package! beancount-mode
|
||||||
:recipe (:host github :repo "beancount/beancount-mode")
|
:recipe (:host github :repo "beancount/beancount-mode")
|
||||||
:pin "dcb317ed0a7582243f30ffc44aaf31717a81502b")
|
:pin "dcb317ed0a7582243f30ffc44aaf31717a81502b")
|
||||||
|
|
Loading…
Reference in a new issue