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.
 

836 B

Core

Package

Define core package.

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

Environment Variables

  (use-package exec-path-from-shell
    :after uno
    :if (member window-system '(ns x))
    :init
    (exec-path-from-shell-initialize))

Garbage Collection

Use gcmh to optimize garbage collection calls.

  (use-package gcmh
    :after uno
    :config
    (gcmh-mode))

Cache Files

  (use-package emacs
    :after (uno recentf)
    :config
    (push (uno-cache-path) recentf-exclude)
    (push (uno-private-path) recentf-exclude))

  (use-package emacs
    :after (uno url-cache)
    :custom
    (url-cache-directory (uno-cache-path "url")))