You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

874 B

Core - Config

Package

Define core config package.

  (use-package emacs
    :after uno
    :config
    (provide 'uno-config))

Emacs Customizations and Overrides

  (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"))))