diff options
author | Julian <julianteule@gmail.com> | 2017-11-22 22:10:35 +0100 |
---|---|---|
committer | Julian <julianteule@gmail.com> | 2017-11-22 22:10:35 +0100 |
commit | 88108ec19799d0966c990d1ea3aeee67cf5f56fd (patch) | |
tree | 24c290ffe36df4492713ee99509705b07b60021a | |
parent | df9c7de02dae3a7ad690aa79450866a4449a4629 (diff) |
Added emacs config
-rw-r--r-- | .emacs | 64 | ||||
-rw-r--r-- | .zshrc | 1 |
2 files changed, 64 insertions, 1 deletions
@@ -0,0 +1,64 @@ +(require 'package) ;; You might already have this line +(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos)) + (not (gnutls-available-p)))) + (url (concat (if no-ssl "http" "https") "://melpa.org/packages/"))) + (add-to-list 'package-archives (cons "melpa" url) t)) +(when (< emacs-major-version 24) + ;; For important compatibility libraries like cl-lib + (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/"))) +(package-initialize) ;; You might already have this line +(add-to-list 'package-archives + '("melpa-stable" . "https://stable.melpa.org/packages/") t) +(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 + ["#757575" "#CD5542" "#4A8F30" "#7D7C21" "#4170B3" "#9B55C3" "#68A5E9" "gray43"]) + '(beacon-color "#cc6666") + '(custom-enabled-themes (quote (ample))) + '(custom-safe-themes + (quote + ("938d8c186c4cb9ec4a8d8bc159285e0d0f07bad46edf20aa469a89d0d2a586ea" "6de7c03d614033c0403657409313d5f01202361e35490a3404e33e46663c2596" "ed317c0a3387be628a48c4bbdb316b4fa645a414838149069210b66dd521733f" "d6922c974e8a78378eacb01414183ce32bc8dbf2de78aabcc6ad8172547cb074" "4e63466756c7dbd78b49ce86f5f0954b92bf70b30c01c494b37c586639fa3f6f" "06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" "628278136f88aa1a151bb2d6c8a86bf2b7631fbea5f0f76cba2a0079cd910f7d" "bb08c73af94ee74453c90422485b29e5643b73b05e8de029a6909af6a3fb3f58" "1b8d67b43ff1723960eb5e0cba512a2c7a2ad544ddb2533a90101fd1852b426e" "82d2cac368ccdec2fcc7573f24c3f79654b78bf133096f9b40c20d97ec1d8016" default))) + '(fci-rule-color "#373b41") + '(flycheck-color-mode-line-face-to-color (quote mode-line-buffer-id)) + '(package-selected-packages + (quote + (ample-theme tangotango-theme cyberpunk-theme color-theme-sanityinc-tomorrow))) + '(vc-annotate-background nil) + '(vc-annotate-color-map + (quote + ((20 . "#cc6666") + (40 . "#de935f") + (60 . "#f0c674") + (80 . "#b5bd68") + (100 . "#8abeb7") + (120 . "#81a2be") + (140 . "#b294bb") + (160 . "#cc6666") + (180 . "#de935f") + (200 . "#f0c674") + (220 . "#b5bd68") + (240 . "#8abeb7") + (260 . "#81a2be") + (280 . "#b294bb") + (300 . "#cc6666") + (320 . "#de935f") + (340 . "#f0c674") + (360 . "#b5bd68")))) + '(vc-annotate-very-old-color 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. + ) + + + +(require 'color-theme-sanityinc-tomorrow) + +(setq org-log-done 'time) @@ -116,6 +116,5 @@ alias pip="pip3" alias sudo="sudo " alias emacs="emacsclient -c" alias cmacs="emacsclient -nw -c" -alias node="nodejs" |