mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Refactor core.el vars; stop package.el from being annoying
This commit is contained in:
11
core/core.el
11
core/core.el
@ -75,15 +75,18 @@
|
||||
(prefer-coding-system 'utf-8) ; with sugar on top
|
||||
(setq default-process-coding-system '(utf-8-unix . utf-8-unix))
|
||||
|
||||
;; stop package.el from being annoying. I rely solely on Cask.
|
||||
(setq package--init-file-ensured t
|
||||
;; Stop package.el from being annoying. I rely solely on Cask.
|
||||
(setq-default
|
||||
package--init-file-ensured t
|
||||
package-user-dir doom-packages-dir
|
||||
package-enable-at-startup nil
|
||||
package-archives
|
||||
'(("gnu" . "http://elpa.gnu.org/packages/")
|
||||
("melpa" . "http://melpa.org/packages/")
|
||||
("org" . "http://orgmode.org/elpa/"))
|
||||
("org" . "http://orgmode.org/elpa/")))
|
||||
|
||||
byte-compile-warnings nil
|
||||
;; Core settings
|
||||
(setq byte-compile-warnings nil
|
||||
ad-redefinition-action 'accept ; silence the advised function warnings
|
||||
apropos-do-all t
|
||||
compilation-always-kill t ; kill compl. process before spawning another
|
||||
|
Reference in New Issue
Block a user