Remove mu4e

This commit is contained in:
Thomas Dehaeze 2019-05-30 16:22:26 +02:00
parent ee744ab206
commit 8feb70b804

View File

@ -118,16 +118,10 @@
;; Visual line navigation for textual modes
(add-hook 'text-mode-hook 'spacemacs/toggle-visual-line-navigation-on)
;; Change powerline default separator
;; (setq powerline-default-separator 'contour)
;; leader-q-q just kill the frame without killink the server
(evil-leader/set-key
"q q" 'spacemacs/frame-killer)
;; Used to edit Thunderbird email with emacs
(add-to-list 'auto-mode-alist '("\\.eml\\'" . org-mode))
;; Remove current light highlight
(spacemacs/toggle-highlight-current-line-globally-off)
#+END_SRC
@ -139,6 +133,7 @@
(global-set-key (kbd "<C-left>") 'shrink-window-horizontally)
(global-set-key (kbd "<C-right>") 'enlarge-window-horizontally)
#+END_SRC
** Lockfiles
#+BEGIN_SRC emacs-lisp
(setq create-lockfiles nil)
@ -167,6 +162,7 @@
#+BEGIN_SRC emacs-lisp
;; Used to the \author for LaTeX export
(setq user-full-name "Thomas Dehaeze")
;; Used to set \email for LaTeX export
(setq user-mail-address "dehaeze.thomas@gmail.com")
#+END_SRC
@ -179,6 +175,7 @@
** LaTeX
- https://tex.stackexchange.com/questions/52179/what-is-your-favorite-emacs-and-or-auctex-command-trick
- https://tex.stackexchange.com/questions/20843/useful-shortcuts-or-key-bindings-or-predefined-commands-for-emacsauctex
*** Basic LaTeX configuration
#+BEGIN_SRC emacs-lisp
(defun latex/clean ()
@ -211,8 +208,8 @@
'(("PDF Tools" TeX-pdf-tools-sync-view)))
#+END_SRC
*** Helm-Bibtex
**** General Config
** Helm-Bibtex
*** General Config
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'helm-bibtex
;; Use "tags" field when looking for bib entries
@ -288,7 +285,7 @@
)
#+END_SRC
**** Open pdf externally
*** Open pdf externally
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'helm-bibtex
(defun tdehaeze/open-pdf-externally (key)
@ -300,7 +297,7 @@
)
#+END_SRC
**** Special Commands
*** Special Commands
#+BEGIN_SRC emacs-lisp
(defun helm-bibtex-favorites (&optional arg)
"Search Favorite BibTeX entries"
@ -1089,10 +1086,16 @@ Ressources:
)
#+END_SRC
Disable automatic highlight of TODO keywords in orgmode buffers
#+BEGIN_SRC emacs-lisp
(add-hook 'org-mode-hook (lambda () (hl-todo-mode -1)))
#+END_SRC
** Projectile
#+BEGIN_SRC emacs-lisp
(setq projectile-generic-command "fd -H --ignore-file .projectile -t f -0")
#+END_SRC
** TODO [#A] Matlab
- https://github.com/yuhonglin/matlab-mode
- https://github.com/pronobis/matlab-mode
@ -1133,7 +1136,11 @@ Ressources:
;; (add-to-list 'company-backends 'company-matlab)
#+END_SRC
** Mails With Mu4e
** TODO [#B] Mails With Mu4e
:PROPERTIES:
:header-args:emacs-lisp+: :tangle no
:END:
- https://github.com/kzar/davemail
- http://cachestocaches.com/2017/3/complete-guide-email-emacs-using-mu-and-/
- http://spacemacs.org/layers/+email/mu4e/README.html
@ -1381,11 +1388,6 @@ Org simply =C-c l= to store the link to the email and then =C-c C-l= and paste t
(spacemacs/set-leader-keys "os" 'eshell)
#+END_SRC
** Disable automatic highlight of TODO keywords in orgmode buffers
#+BEGIN_SRC emacs-lisp
(add-hook 'org-mode-hook (lambda () (hl-todo-mode -1)))
#+END_SRC
** Path for Shell
#+BEGIN_SRC emacs-lisp
(when (memq window-system '(mac ns x))