Compare commits

...

3 Commits

Author SHA1 Message Date
Lucien Cartier-Tilet 9daced8c68
[Tmux] add keybind to zoom on pane
continuous-integration/drone/push Build is passing Details
2023-07-07 22:29:36 +02:00
Lucien Cartier-Tilet 749fda9b83
[Emacs] add org-roam-ui package 2023-07-07 22:29:24 +02:00
Lucien Cartier-Tilet c2e3f1f848
[Misc] update private files 2023-07-07 22:29:04 +02:00
4 changed files with 14 additions and 1 deletions

View File

@ -4,3 +4,4 @@
.mbsyncrc
org/*.org
.config/fish/private.fish
org/roam/*

Binary file not shown.

View File

@ -4719,7 +4719,6 @@ the usage of the ~:ignore:~ tag in org.
*** Agenda
:PROPERTIES:
:header-args:emacs-lisp: :exports code :results silent
:CUSTOM_ID: Packages-Configuration-Org-mode-Agenda8b55fl6184j0
:END:
#+name: org-agenda-files
@ -5689,6 +5688,18 @@ management system based on org-mode.
"rar" #'org-roam-alias-remove))
#+end_src
#+begin_src emacs-lisp
(use-package org-roam-ui
:straight (:build t)
:defer t
:after org-roam
:config
(setq org-roam-ui-sync-theme t
org-roam-ui-follow t
org-roam-ui-update-on-save t
org-roam-ui-open-on-start t))
#+end_src
*** Org-ref and Bibtex configuration
:PROPERTIES:
:CUSTOM_ID: Packages-Configuration-Org-mode-org-ref-1h586cd085j0

View File

@ -201,6 +201,7 @@ open in the same directory as the directory I am currently in.
| =t= | select-pane -D | |
| =s= | select-pane -U | |
| =r= | select-pane -R | |
| =f= | resize-pane -Z | |
| =.= | | pane-resize |
#+begin_src tmux