mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 03:00:08 +00:00
[emacs] Clean up the mode line
This commit is contained in:
parent
c4d8c3e434
commit
fd4568e3d6
1 changed files with 6 additions and 1 deletions
|
@ -127,6 +127,7 @@ Helm projectile integration
|
|||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package git-gutter
|
||||
:ensure t
|
||||
:diminish git-gutter-mode
|
||||
:config
|
||||
(progn
|
||||
(global-git-gutter-mode t)
|
||||
|
@ -144,6 +145,7 @@ Helm projectile integration
|
|||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package magit
|
||||
:ensure t
|
||||
:diminish magit-auto-revert-mode
|
||||
:commands (magit-init
|
||||
magit-status
|
||||
magit-diff
|
||||
|
@ -281,7 +283,9 @@ magnitude faster.
|
|||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package projectile
|
||||
:ensure t
|
||||
:config (progn (require 'helm-projectile)
|
||||
:config (progn (setq projectile-mode-line
|
||||
'(:eval (format " [%s]" (projectile-project-name))))
|
||||
(require 'helm-projectile)
|
||||
(helm-projectile-on)
|
||||
(projectile-global-mode)))
|
||||
#+END_SRC
|
||||
|
@ -369,6 +373,7 @@ Taken from http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/a6
|
|||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package latex-extra
|
||||
:ensure t
|
||||
:diminish latex-extra-mode
|
||||
:commands latex-extra-mode
|
||||
:init (add-hook 'LaTeX-mode-hook #'latex-extra-mode))
|
||||
#+END_SRC
|
||||
|
|
Loading…
Reference in a new issue