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)
|
||||
'(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
|
||||
|
|
Loading…
Reference in a new issue