Clean up the modeline a bit
This commit is contained in:
parent
3799d6fd0b
commit
0ebba48c93
5 changed files with 11 additions and 1 deletions
|
@ -32,6 +32,7 @@
|
|||
(prelude-require-packages '(company))
|
||||
|
||||
(require 'company)
|
||||
(require 'diminish)
|
||||
|
||||
(setq company-idle-delay 0.5)
|
||||
(setq company-show-numbers t)
|
||||
|
@ -43,6 +44,7 @@
|
|||
(setq company-tooltip-flip-when-above t)
|
||||
|
||||
(global-company-mode 1)
|
||||
(diminish 'global-company-mode)
|
||||
|
||||
(provide 'prelude-company)
|
||||
;;; prelude-company.el ends here
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
;; ivy is a powerful alternative to the popular ido-mode
|
||||
|
||||
(require 'ivy)
|
||||
(require 'diminish)
|
||||
|
||||
(ivy-mode 1)
|
||||
(setq ivy-use-virtual-buffers t)
|
||||
|
@ -45,6 +46,8 @@
|
|||
(global-set-key (kbd "C-c C-r") 'ivy-resume)
|
||||
(global-set-key (kbd "<f6>") 'ivy-resume)
|
||||
|
||||
(diminish 'ivy-mode)
|
||||
|
||||
(setq projectile-completion-system 'ivy)
|
||||
|
||||
;;; Swiper
|
||||
|
|
|
@ -65,7 +65,8 @@
|
|||
prelude-flyspell)
|
||||
(flyspell-prog-mode))
|
||||
(when prelude-guru
|
||||
(guru-mode +1))
|
||||
(guru-mode +1)
|
||||
(diminish 'guru-mode))
|
||||
(smartparens-mode +1)
|
||||
(prelude-enable-whitespace)
|
||||
(prelude-local-comment-auto-fill))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue