#+TITLE: Core - Config #+AUTHOR: Juan Placencia * Package Define core config package. #+BEGIN_SRC emacs-lisp (use-package emacs :after uno :config (provide 'uno-config)) #+END_SRC * Emacs Customizations and Overrides #+BEGIN_SRC emacs-lisp (use-package emacs :after uno-config :general (uno-leader-define "fed" '(uno/config/edit :which-key "Edit emacs configuration") "feR" '(uno/config/reload :which-key "Reload Emacs configuration") "fs" '(save-buffer :which-key "Save file") "fS" '(uno/file/save-all-files :which-key "Save all files")) :init (defun uno/config/edit () "Open configuration file." (interactive) (find-file (uno-path "bootstrap.org"))) (defun uno/config/reload () "Reload configuration." (interactive) (load-file (uno-emacs-path "init.el")))) #+END_SRC