Emacs Application Framework Testing

This commit is contained in:
Curt Spark 2020-04-14 14:32:46 +01:00
parent d08672713e
commit d54bff67ef
1 changed files with 23 additions and 1 deletions

View File

@ -4,7 +4,6 @@
* Introduction * Introduction
Welcome to my Emacs configuration! Welcome to my Emacs configuration!
* Config * Config
** Appearance ** Appearance
*** Remove Tool Bar *** Remove Tool Bar
@ -204,6 +203,22 @@ EXWM Specific Keybindings
(global-set-key (kbd "s-k") 'exwm-workspace-move) (global-set-key (kbd "s-k") 'exwm-workspace-move)
(global-set-key (kbd "s-w") 'exwm-workspace-swap) (global-set-key (kbd "s-w") 'exwm-workspace-swap)
+END_SRC +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 ** Dynamic Window Tiling
*** Edwina *** Edwina
Edwina is a dynamic window manager for Emacs. Edwina is a dynamic window manager for Emacs.
@ -272,6 +287,13 @@ A recreation of the iconic Suckless Dynamic Menu.
(evil-mode 1)) (evil-mode 1))
#+END_SRC #+END_SRC
** Org Mode ** 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 *** Org Bullets
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package org-bullets (use-package org-bullets