Compare commits
3 commits
c055ccc71b
...
80df5e338a
Author | SHA1 | Date | |
---|---|---|---|
Evie Litherland-Smith | 80df5e338a | ||
Evie Litherland-Smith | bc5333b992 | ||
Evie Litherland-Smith | 0fbda34d30 |
12
README.org
12
README.org
|
@ -201,8 +201,13 @@ Configure the look and feel of Emacs
|
||||||
:config
|
:config
|
||||||
(setopt visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow)))
|
(setopt visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow)))
|
||||||
|
|
||||||
|
(with-eval-after-load 'org-agenda
|
||||||
|
(add-hook 'org-agenda-mode-hook
|
||||||
|
#'(lambda () (visual-line-mode +1) (visual-fill-column-mode +1))))
|
||||||
|
|
||||||
(with-eval-after-load 'mu4e
|
(with-eval-after-load 'mu4e
|
||||||
(add-hook 'mu4e-view-mode-hook #'(lambda () (visual-line-mode +1) (visual-fill-column-mode +1))))
|
(add-hook 'mu4e-view-mode-hook
|
||||||
|
#'(lambda () (visual-line-mode +1) (visual-fill-column-mode +1))))
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Font ligatures
|
*** Font ligatures
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -329,6 +334,7 @@ Rules and packages for buffer management and window navigation.
|
||||||
:config
|
:config
|
||||||
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
|
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
|
||||||
(add-to-list 'tramp-remote-path "~/.local/bin/")
|
(add-to-list 'tramp-remote-path "~/.local/bin/")
|
||||||
|
(add-to-list 'tramp-remote-path "~/bin")
|
||||||
(add-to-list 'tramp-default-proxies-alist
|
(add-to-list 'tramp-default-proxies-alist
|
||||||
'("legion" "\\`root\\'" "/ssh:%h:")))
|
'("legion" "\\`root\\'" "/ssh:%h:")))
|
||||||
|
|
||||||
|
@ -955,8 +961,8 @@ Configure email with iCalendar event support, to integrate with
|
||||||
:bind (("C-c n r" . org-roam-capture)
|
:bind (("C-c n r" . org-roam-capture)
|
||||||
("C-c n f" . org-roam-node-find)
|
("C-c n f" . org-roam-node-find)
|
||||||
:map org-mode-map
|
:map org-mode-map
|
||||||
("C-c n l" . org-roam-node-insert)
|
("C-c n i" . org-roam-node-insert)
|
||||||
("C-c n C-l" . org-roam-buffer-toggle))
|
("C-c n l" . org-roam-buffer-toggle))
|
||||||
:custom
|
:custom
|
||||||
(org-roam-directory (expand-file-name "roam" org-directory))
|
(org-roam-directory (expand-file-name "roam" org-directory))
|
||||||
(org-roam-completion-everywhere nil)
|
(org-roam-completion-everywhere nil)
|
||||||
|
|
Loading…
Reference in a new issue