Fix user-full-name and user-mail-address (they were mixed up)
This commit is contained in:
parent
66f853b92a
commit
159a1051fb
10
init.el
10
init.el
@ -9,10 +9,10 @@
|
|||||||
|
|
||||||
(setq user-full-name
|
(setq user-full-name
|
||||||
(replace-regexp-in-string "\n$" "" (shell-command-to-string
|
(replace-regexp-in-string "\n$" "" (shell-command-to-string
|
||||||
"git config --get user.email")))
|
"git config --get user.name")))
|
||||||
(setq user-mail-address
|
(setq user-mail-address
|
||||||
(replace-regexp-in-string "\n$" "" (shell-command-to-string
|
(replace-regexp-in-string "\n$" "" (shell-command-to-string
|
||||||
"git config --get user.name")))
|
"git config --get user.email")))
|
||||||
|
|
||||||
(defun emacs24_4-p ()
|
(defun emacs24_4-p ()
|
||||||
(or (and (>= emacs-major-version 24)
|
(or (and (>= emacs-major-version 24)
|
||||||
@ -809,12 +809,6 @@ The current directory is assumed to be the project's root otherwise."
|
|||||||
(add-hook 'mu4e-compose-mode-hook
|
(add-hook 'mu4e-compose-mode-hook
|
||||||
(defun my-do-compose-stuff () (flyspell-mode)))
|
(defun my-do-compose-stuff () (flyspell-mode)))
|
||||||
|
|
||||||
(setq
|
|
||||||
mu4e-compose-signature
|
|
||||||
(concat
|
|
||||||
"Ivan Malison\n"
|
|
||||||
"https://github.com/IvanMalison"))
|
|
||||||
|
|
||||||
(require 'smtpmail)
|
(require 'smtpmail)
|
||||||
|
|
||||||
;; alternatively, for emacs-24 you can use:
|
;; alternatively, for emacs-24 you can use:
|
||||||
|
Loading…
Reference in New Issue
Block a user