Some emacs configuration
This commit is contained in:
parent
b771b4a4fd
commit
9b09debefa
1 changed files with 10 additions and 1 deletions
11
emacs/.emacs
11
emacs/.emacs
|
@ -57,7 +57,7 @@
|
||||||
'(menu-bar-mode nil)
|
'(menu-bar-mode nil)
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
(quote
|
(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)
|
'(scroll-bar-mode nil)
|
||||||
'(shell-pop-shell-type
|
'(shell-pop-shell-type
|
||||||
(quote
|
(quote
|
||||||
|
@ -179,6 +179,15 @@
|
||||||
ac-source-dictionary))
|
ac-source-dictionary))
|
||||||
(global-auto-complete-mode)))
|
(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
|
;; ivy
|
||||||
(use-package ivy
|
(use-package ivy
|
||||||
:ensure t
|
:ensure t
|
||||||
|
|
Loading…
Reference in a new issue