Core - Config
Define core config package.
(use-package emacs
:after uno
:config
(provide 'uno-config))
(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"))))