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.
 

528 B

Core

Package

Define core package.

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

Garbage Collection

Use gcmh to optimize garbage collection calls.

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

Exclude Recent Files

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