summaryrefslogtreecommitdiff
path: root/emacs/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el11
1 files changed, 4 insertions, 7 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 88b6833..0464931 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -15,7 +15,7 @@
("/home/blaise/org/agenda.org" "/home/blaise/org/anniversaries.org" "/home/blaise/org/repeat.org" "/home/blaise/org/todo.org" "/home/blaise/org/clocked.org")))
'(package-selected-packages
(quote
- (helm-flyspell flycheck which-key helm-swoop evil-leader helm spaceline evil use-package))))
+ (treemacs-evil treemacs avy move-text es-lib helm-flyspell flycheck which-key helm-swoop evil-leader helm spaceline evil use-package))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
@@ -25,7 +25,9 @@
;; Bootstrap `use-package'
(require 'package)
-(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
+(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
+ ("melpa" . "https://melpa.org/packages/")))
+;;(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
@@ -46,11 +48,6 @@
:ensure t
)
-;; csv
-(use-package csv
- :ensure t
- )
-
;; evil
(use-package evil-leader
:ensure t