Created
September 21, 2016 09:14
-
-
Save nlamirault/669a42e7ab666f06ff35f54edbf1f91c to your computer and use it in GitHub Desktop.
Emacs init
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; init.el --- Emacs initialization file | |
;; Added by Package.el. This must come before configurations of | |
;; installed packages. Don't delete this line. If you don't want it, | |
;; just comment it out by adding a semicolon to the start of the line. | |
;; You may delete these explanatory comments. | |
(package-initialize) | |
(when (eq window-system 'x) | |
;; default font | |
(set-face-attribute 'default (font-spec :name "Hack")) | |
;; font for all unicode characters | |
(set-fontset-font t 'unicode "Hack" nil 'prepend) | |
;; Default height for fonts | |
(set-face-attribute 'default nil :height 115)) | |
(mapc (lambda (path) | |
(add-to-list 'load-path (concat user-emacs-directory path))) | |
'("scame/" "scame/gnus")) | |
(require 'scame) | |
(scame-global-mode) | |
(add-to-list 'load-path "/home/nlamirault/Apps/mu-0.9.16/mu4e") | |
(require 'mu4e) | |
(provide 'init) | |
;;; init.el ends here | |
et : | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(ansi-color-faces-vector | |
[default bold shadow italic underline bold bold-italic bold]) | |
'(ansi-color-names-vector | |
(vector "#ffffff" "#f36c60" "#8bc34a" "#fff59d" "#4dd0e1" "#b39ddb" "#81d4fa" "#263238")) | |
'(browse-url-browser-function (quote browse-url-generic)) | |
'(browse-url-generic-program "/usr/bin/google-chrome") | |
'(column-number-mode t) | |
'(scame-addons (quote (libmpdee)) t) | |
'(scame-completion-method (quote ivy)) | |
'(tool-bar-mode nil) | |
) | |
(custom-set-faces | |
;; custom-set-faces was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(default ((t (:family "Hack" :foundry "unknown" :slant normal :weight normal :height 113 :width normal))))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment