Added let-alist package to be compatible with older emacs on debian
This commit is contained in:
parent
9e350ae334
commit
6f6f8d38f8
1 changed files with 7 additions and 1 deletions
|
@ -128,6 +128,10 @@
|
||||||
; :demand t
|
; :demand t
|
||||||
; :config '(my/shackle-rules))
|
; :config '(my/shackle-rules))
|
||||||
|
|
||||||
|
(use-package let-alist
|
||||||
|
:ensure t
|
||||||
|
:demand t)
|
||||||
|
|
||||||
;; powerline
|
;; powerline
|
||||||
(use-package powerline
|
(use-package powerline
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -168,7 +172,9 @@
|
||||||
(add-hook 'org-mode-hook
|
(add-hook 'org-mode-hook
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(linum-mode 0)
|
(linum-mode 0)
|
||||||
(setq-local line-spacing 0.2))))
|
(setq-local line-spacing 0.2)
|
||||||
|
(setq-local fill-column 80)
|
||||||
|
(auto-fill-mode 1))))
|
||||||
|
|
||||||
;; Org Bullets
|
;; Org Bullets
|
||||||
(use-package org-bullets
|
(use-package org-bullets
|
||||||
|
|
Loading…
Reference in a new issue