diff options
author | William Carroll <wpcarro@gmail.com> | 2018-09-04T19·01-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-09-04T19·01-0400 |
commit | 0244474e9fb6a49ec2d3d555e15e644f12479388 (patch) | |
tree | 118c3dfea9dbbb172eadf938a3c42d5019dd9d17 /emacs.d/init.el | |
parent | 0d6c0881a81e2ba3a1cd88f8ae9dab6a86c966af (diff) |
Debug startup, support LSP, update KBDs
Debug startup: - some packages were missing explicit use-package calls, which made this configuration incompatible with fresh computers. After crashing my MBP and trying to get this working thereafter, I learned. Support LSP: - LSP support for Haskell is good; embrace and prefer over Intero Update KBDs: - preferences change - changing to a light theme (for now)
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r-- | emacs.d/init.el | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index b2fb4cfa3425..8f0deff079ac 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -1,12 +1,25 @@ + +;; Added by Package.el. This must come before configurations of +;; installed packages. Don't delete this line. If you don't want it, +;; just comment it out by adding a semicolon to the start of the line. +;; You may delete these explanatory comments. +(package-initialize) + (require 'wpc-package "~/.emacs.d/wpc/packages/wpc-package.el") ;; third-party libraries (use-package dash) +(use-package dash-functional) (use-package s) (use-package f) +(use-package request) +(use-package pcre2el) -;; my libraries +;; load order is intentional (require 'variables) +(require 'wpc-misc) + +;; my libraries (require 'functions) (require 'string-functions) (require 'macros) @@ -14,7 +27,6 @@ (require 'wpc-ui) (require 'wpc-keybindings) -(require 'wpc-misc) (require 'wpc-dired) (require 'wpc-terminal) (require 'wpc-org) |