I showed you my source code, pls respond
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.
 
 
 

1.2 KiB

Trash

Keep the system clean of debris.

Setup

Despite having the stateful and immutable configuration seprated, and the entire project under version control, it's still good practice to make efforts to reduce the trash created by Emacs. The package no-littering helps us achieve just that.

  • Disable tooltip-mode

  • Disable tool-bar-mode

  • Disable menu-bar-mode

  • Disable scroll-bar-mode

  • Inhibit the startup message

  • Clear the scratch buffer instructions

  • Increase the garbage collector threshold

(use-package no-littering
  :custom (inhibit-startup-message t)
          (initial-scratch-message "")
          ;; (comp-deferred-compilation t)
          (gc-cons-threshold most-positive-fixnum)
  :config (tooltip-mode -1)
          (tool-bar-mode -1)
          (menu-bar-mode -1)
          (scroll-bar-mode -1))

Footnotes