add wanderlust
This commit is contained in:
parent
b14075558d
commit
234942f10d
2 changed files with 11 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
(not (gnutls-available-p))))
|
||||
(proto (if no-ssl "http" "https")))
|
||||
(add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t)
|
||||
(add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t)
|
||||
;; (add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t)
|
||||
(when (< emacs-major-version 24)
|
||||
;; for important compatibility libraries like cl-lib
|
||||
(add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/")))))
|
||||
|
@ -36,7 +36,9 @@
|
|||
'(column-number-mode t)
|
||||
'(custom-enabled-themes (quote (tango-dark)))
|
||||
'(menu-bar-mode nil)
|
||||
'(package-selected-packages (quote (flycheck-yamllint yaml-mode magit pass pinentry)))
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(wanderlust flycheck-rust cargo flycheck-yamllint yaml-mode pass pinentry magit org)))
|
||||
'(scroll-bar-mode nil)
|
||||
'(show-paren-mode t)
|
||||
'(tool-bar-mode nil))
|
||||
|
@ -89,6 +91,9 @@
|
|||
;; set pass default password length
|
||||
(setq password-store-password-length 32)
|
||||
|
||||
;; load wanderlust
|
||||
(autoload 'wl "wl" "Wanderlust" t)
|
||||
|
||||
;; include other configs
|
||||
;; calendar-mode
|
||||
(if (file-exists-p "~/.emacs.d/calendar.el")
|
||||
|
|
|
@ -2,3 +2,7 @@
|
|||
!/.emacs.d
|
||||
!/.emacs.d/calendar.el
|
||||
!/.emacs.d/init.el
|
||||
!/.folders
|
||||
!/.gitignore.d
|
||||
!/.gitignore.d/emacs
|
||||
!/.wl
|
||||
|
|
Loading…
Reference in a new issue