-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.el
35 lines (28 loc) · 1.05 KB
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(package-initialize)
(eval-when-compile
(require 'use-package))
(require 'package)
(require 'cl-lib)
(setq custom-file "~/.emacs.d/emacs-custom.el"
package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("melpa" . "http://melpa.org/packages/")
("melpa-stable" . "http://stable.melpa.org/packages/")))
(use-package dash :ensure t)
(use-package f :ensure t)
(use-package ht :ensure t)
(use-package loop :ensure t)
(use-package s :ensure t)
(use-package bpr :ensure t)
(use-package duplicate-thing :ensure t)
(use-package transient :ensure t)
(->> "~/.emacs.d/packages"
(f-files)
(--filter (not (or (s-contains-p "#" it)
(s-contains-p "~" it))))
(funcall (lambda (files) (--each files
(progn
(load it)
(load it))))))
(add-to-list 'load-path (f-expand "~/opt/kubectl.el"))
(add-to-list 'load-path (f-expand "~/.emacs.d/combobulate"))
(put 'narrow-to-region 'disabled nil)