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.
15 lines
669 B
15 lines
669 B
;; -*- lexical-binding: t; -*- |
|
;; TURN ON IN INIT FILE!!!!! |
|
|
|
;; Make gc pauses faster by decreasing the threshold. |
|
(setq gc-cons-threshold (* 2 1000 1000)) |
|
|
|
(require 'package) |
|
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) |
|
;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities` |
|
;; and `package-pinned-packages`. Most users will not need or want to do this. |
|
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) |
|
(unless (package-installed-p 'use-package) |
|
(package-refresh-contents) |
|
(package-install 'use-package)) |
|
(require 'use-package)
|
|
|