diff --git a/config.org b/config.org index d68857f..752bbcb 100644 --- a/config.org +++ b/config.org @@ -4,7 +4,6 @@ * Introduction Welcome to my Emacs configuration! - * Config ** Appearance *** Remove Tool Bar @@ -204,6 +203,22 @@ EXWM Specific Keybindings (global-set-key (kbd "s-k") 'exwm-workspace-move) (global-set-key (kbd "s-w") 'exwm-workspace-swap) +END_SRC +** The Emacs Application Framework +The Emacs Application Framework is a big project, please check the README before use, install dependencies etc. + +#+BEGIN_SRC emacs-lisp + (use-package eaf + :load-path "~/.emacs.d/site-lisp/emacs-application-framework" + ; Set to "/usr/share/emacs/site-lisp/eaf" if installed from AUR + :bind + ("C-x C-f" . 'eaf-open) + :custom + (eaf-find-alternate-file-in-dired t) + :config + (eaf-bind-key scroll_up "C-n" eaf-pdf-viewer-keybinding) + (eaf-bind-key scroll_down "C-p" eaf-pdf-viewer-keybinding) + (eaf-bind-key take_photo "p" eaf-camera-keybinding)) +#+END_SRC ** Dynamic Window Tiling *** Edwina Edwina is a dynamic window manager for Emacs. @@ -272,6 +287,13 @@ A recreation of the iconic Suckless Dynamic Menu. (evil-mode 1)) #+END_SRC ** Org Mode +*** LateX Preview +#+BEGIN_SRC emacs-lisp + (use-package org-fragtog + :ensure t + :init + (add-hook 'org-mode-hook 'org-fragtog-mode)) +#+END_SRC *** Org Bullets #+BEGIN_SRC emacs-lisp (use-package org-bullets