Some emacs configuration

This commit is contained in:
madmaurice 2017-10-04 22:03:01 +02:00
parent b771b4a4fd
commit 9b09debefa

View file

@ -57,7 +57,7 @@
'(menu-bar-mode nil)
'(package-selected-packages
(quote
(terminal-here shell-pop swiper neotree centered-cursor-mode ivy avy heroku-theme auto-complete use-package yasnippet evil-surround org evil-magit magit makefile-runner evil)))
(powerline-evil powerline origami projectile terminal-here shell-pop swiper neotree centered-cursor-mode ivy avy heroku-theme auto-complete use-package yasnippet evil-surround org evil-magit magit makefile-runner evil)))
'(scroll-bar-mode nil)
'(shell-pop-shell-type
(quote
@ -179,6 +179,15 @@
ac-source-dictionary))
(global-auto-complete-mode)))
;; folding
(use-package origami
:ensure t
:demand t
:config (progn
(setq origami-show-fold-header t)
(define-key evil-normal-state-map "z" 'origami-toggle-node)
(global-origami-mode)))
;; ivy
(use-package ivy
:ensure t