dotfiles/init.el

598 lines
20 KiB
EmacsLisp
Raw Normal View History

2013-03-16 17:34:21 -06:00
;; =============================================================================
2013-03-15 11:35:58 -06:00
;; ___ _ __ ___ __ _ ___ ___
;; / _ \ '_ ` _ \ / _` |/ __/ __|
;; | __/ | | | | | (_| | (__\__ \
;; (_)___|_| |_| |_|\__,_|\___|___/
2013-03-16 17:34:21 -06:00
;; =============================================================================
2013-03-15 11:35:58 -06:00
2014-05-10 15:28:27 -06:00
(setq user-full-name
(replace-regexp-in-string "\n$" "" (shell-command-to-string
"git config --get user.email")))
2014-05-10 15:28:27 -06:00
(setq user-mail-address
(replace-regexp-in-string "\n$" "" (shell-command-to-string
"git config --get user.name")))
2013-03-15 11:35:58 -06:00
;; =============================================================================
;; GUI Disables
;; =============================================================================
;; Turn off mouse interface early in startup to avoid momentary display
(when (fboundp 'menu-bar-mode) (menu-bar-mode -1))
(when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
2013-03-15 11:35:58 -06:00
;; =============================================================================
;; Load Path Configuration
;; =============================================================================
2014-10-29 09:45:30 -06:00
(setq custom-file "~/.emacs.d/custom.el")
(when (file-exists-p custom-file) (load custom-file))
2013-03-16 21:09:42 -06:00
2014-11-05 11:39:24 -07:00
(add-to-list 'load-path "~/.emacs.d/lisp")
;; =============================================================================
2014-10-29 09:45:30 -06:00
;; ELPA/package.el/MELPA
;; =============================================================================
(require 'package)
2014-11-12 00:36:24 -07:00
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/") t)
2014-11-11 17:31:59 -07:00
(add-to-list 'package-archives '("elpa" . "http://tromey.com/elpa/") t)
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
2014-10-29 09:45:30 -06:00
(defun ensure-packages-installed (packages)
2014-11-12 00:36:24 -07:00
"Assure every package is installed, ask for installation if its not.
Return a list of installed packages or nil for every package not installed."
;; fetch the list of packages available
(unless package-archive-contents
(package-refresh-contents))
(mapcar
(lambda (package)
(if (package-installed-p package)
package
(progn (message (format "Installing package %s." package))
(package-install package))))
packages))
(package-initialize)
(ensure-packages-installed '(epl use-package))
(require 'use-package)
(put 'use-package 'lisp-indent-function 1) ;; reduce indentation for use-package
2014-10-29 09:45:30 -06:00
;; =============================================================================
;; Disables
;; =============================================================================
2014-10-24 06:04:21 -06:00
2014-10-29 09:45:30 -06:00
;; Disable the creation of backup files.
(setq backup-inhibited t)
(setq make-backup-files nil)
(setq auto-save-default nil)
2014-10-24 06:04:21 -06:00
2014-11-12 00:36:24 -07:00
;; Why is this necessary again?
(defconst emacs-tmp-dir
(format "%s/%s%s/" temporary-file-directory "emacs" (user-uid)))
(setq backup-directory-alist `((".*" . ,emacs-tmp-dir)))
(setq auto-save-file-name-transforms `((".*" ,emacs-tmp-dir t)))
(setq auto-save-list-file-prefix emacs-tmp-dir)
2014-11-08 16:27:28 -07:00
2014-10-29 09:45:30 -06:00
(put 'set-goal-column 'disabled nil)
(auto-fill-mode -1)
2014-11-13 22:53:57 -07:00
(setq indent-tabs-mode nil)
2014-11-12 00:36:24 -07:00
;; No hsplits. EVER.
(defun split-horizontally-for-temp-buffers () (split-window-horizontally))
(add-hook 'temp-buffer-setup-hook 'split-horizontally-for-temp-buffers)
(setq split-height-threshold nil)
2014-11-13 22:04:25 -07:00
(setq split-width-threshold 160)
2014-11-12 00:36:24 -07:00
;; =============================================================================
;; Config Free Packages
;; =============================================================================
(defvar packages-essential
2014-11-13 16:21:24 -07:00
'(popup auto-complete ido-ubiquitous mo-git-blame multiple-cursors
2014-11-12 00:36:24 -07:00
yasnippet cl-lib flx-ido))
(defvar packages-other
'(thingatpt+ latex-preview-pane paredit inf-ruby undo-tree
exec-path-from-shell slime string-inflection yaml-mode sgml-mode
dired+ ctags ctags-update helm-gtags hackernews gitconfig-mode
2014-11-13 22:04:25 -07:00
aggressive-indent imenu+ weechat evil helm-ag xclip neotree
magit-gh-pulls))
2014-11-12 00:36:24 -07:00
(defvar packages-appearance
'(monokai-theme solarized-theme zenburn-theme base16-theme molokai-theme
tango-2-theme gotham-theme color-theme-sanityinc-tomorrow smart-mode-line
rainbow-delimiters ansi-color))
(ensure-packages-installed packages-essential)
(ensure-packages-installed packages-other)
(ensure-packages-installed packages-appearance)
2014-10-29 09:45:30 -06:00
;; =============================================================================
;; General Emacs Options
;; =============================================================================
2014-10-17 20:11:48 -06:00
2014-10-29 09:45:30 -06:00
;; Set path from shell.
(exec-path-from-shell-initialize)
2014-10-29 09:45:30 -06:00
;; This makes it so that emacs --daemon puts its files in ~/.emacs.d/server
;; (among other things)
(setq server-use-tcp t)
2013-03-15 11:35:58 -06:00
;; Display line and column numbers in mode line.
(line-number-mode t)
(column-number-mode t)
(global-linum-mode t)
2014-10-29 09:45:30 -06:00
(setq visible-bell t)
2014-11-12 00:36:24 -07:00
(setq uniquify-buffer-name-style 'forward)
2013-03-15 11:35:58 -06:00
2013-03-16 17:34:21 -06:00
;; Don't disable downcase and upcase region.
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
(setq c-subword-mode t)
2014-10-29 09:45:30 -06:00
(setq flyspell-issue-welcome-flag nil)
2013-03-16 17:34:21 -06:00
2014-10-29 09:45:30 -06:00
(add-hook 'after-init-hook '(lambda () (setq debug-on-error t)))
2014-11-12 00:36:24 -07:00
(add-hook 'after-init-hook #'flycheck-mode)
2014-11-13 16:21:24 -07:00
(require 'tramp)
2014-11-14 00:41:09 -07:00
(setq tramp-default-method "plink")
2014-11-13 16:21:24 -07:00
2014-11-12 00:36:24 -07:00
(use-package ace-jump-mode
:ensure t
:commands ace-jump-mode
:config
(progn
(setq ace-jump-mode-scope 'window))
:bind (("C-;" . ace-jump-mode)
;; This is needed for terminal emacs.
("C-c j" . ace-jump-mode)))
(use-package flycheck
:ensure t
:config
(progn
(setq flycheck-checkers (delq 'emacs-lisp-checkdoc flycheck-checkers))
(global-flycheck-mode)))
(use-package haskell-mode
:ensure t
:commands haskell-mode
:config
(progn
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)))
(use-package rainbow-delimiters
:ensure t
:commands rainbow-delimiters-mode
:init
(progn
(add-hook 'prog-mode-hook (lambda () (rainbow-delimiters-mode t)))))
2014-10-29 03:24:33 -06:00
2014-11-13 16:21:24 -07:00
(use-package magit
:ensure t
:commands magit-status
:bind (("C-x g" . magit-status)))
2014-10-29 09:45:30 -06:00
;; =============================================================================
2014-11-12 00:36:24 -07:00
;; Programming Mode Hooks
2014-10-29 09:45:30 -06:00
;; =============================================================================
2014-10-31 05:19:11 -06:00
(add-hook 'prog-mode-hook (lambda () (auto-fill-mode -1)))
2014-10-29 09:45:30 -06:00
(add-hook 'prog-mode-hook (lambda () (subword-mode t)))
(add-hook 'prog-mode-hook (lambda () (auto-complete-mode t)))
2014-10-27 00:31:26 -06:00
;; (add-hook 'prog-mode-hook (lambda () (highlight-lines-matching-regexp
;; ".\\{81\\}" 'hi-blue)))
2014-10-29 09:45:30 -06:00
;; =============================================================================
;; Navigation: helm/projectile/ido
;; =============================================================================
2014-10-21 17:38:07 -06:00
2014-11-12 00:36:24 -07:00
(use-package helm
:ensure t
:config
(progn
(helm-mode 1)))
(use-package projectile
:ensure t
:config
(progn
(setq projectile-enable-caching t)
(projectile-global-mode)
(helm-projectile-on))
:init
(progn
(use-package flx
:ensure t
:config
(progn
;; disable ido faces to see flx highlights.
(flx-ido-mode 1)
;; This makes flx-ido much faster.
(setq gc-cons-threshold 20000000)
(setq ido-use-faces nil))
:init
(progn
(use-package flx-ido
:ensure t)))
(use-package helm-projectile
:ensure t
:config
2014-11-13 16:21:24 -07:00
(progn (helm-projectile-on)))))
2014-11-12 00:36:24 -07:00
2014-10-29 09:45:30 -06:00
(ido-mode t)
(ido-everywhere 1)
(setq ido-enable-flex-matching t)
2014-11-12 00:36:24 -07:00
(use-package smex
:ensure t
:bind ("M-x" . smex))
2013-03-16 17:34:21 -06:00
;; =============================================================================
;; Python
;; =============================================================================
2014-11-13 22:53:57 -07:00
(defvar use-python-tabs nil)
(defun python-tabs () (setq tab-width 4
indent-tabs-mode t
python-indent-offset 4))
(defun add-virtual-envs-to-jedi-server ()
(let ((virtual-envs (get-virtual-envs)))
(when virtual-envs (set (make-local-variable 'jedi:server-args)
(make-virtualenv-args virtual-envs)))))
(defun make-virtualenv-args (virtual-envs)
(apply #'append (mapcar (lambda (env) `("-v" ,env)) virtual-envs)))
(defun get-virtual-envs ()
(condition-case ex
(let ((project-root (projectile-project-root)))
(cl-remove-if-not 'file-exists-p
(mapcar (lambda (env-suffix)
(concat project-root env-suffix))
'(".tox/py27/" "env" ".tox/venv/"))))
('error
(message (format "Caught exception: [%s]" ex))
(setq retval (cons 'exception (list ex))))
nil))
(defun message-virtual-envs ()
(interactive)
(message "%s" (get-virtual-envs)))
2014-11-12 00:36:24 -07:00
(use-package python
:commands python-mode
:mode ("\\.py\\'" . python-mode)
:config
(progn
;; macros
(fset 'ipdb "import ipdb; ipdb.set_trace()")
(fset 'main "if __name__ == '__main__':")
(fset 'sphinx-class ":class:`~")
:init
(progn
(use-package jedi
:commands jedi:goto-definition
:config (setq jedi:complete-on-dot t)
:ensure t)
(use-package pytest :ensure t)
(use-package pymacs :ensure t)
(use-package sphinx-doc :ensure t)
(add-hook 'python-mode-hook (lambda () (setq show-trailing-whitespace t)))
2014-11-13 22:53:57 -07:00
(add-hook 'python-mode-hook (lambda () (if use-python-tabs (python-tabs))))
2014-11-12 00:36:24 -07:00
(add-hook 'python-mode-hook (lambda () (subword-mode t)))
(add-hook 'python-mode-hook #'jedi:setup)
2014-11-13 22:53:57 -07:00
(add-hook 'python-mode-hook #'add-virtual-envs-to-jedi-server))))
;; =============================================================================
;; Scala
;; =============================================================================
2014-11-07 03:21:37 -07:00
;; (load "~/.emacs.d/lisp/ensime-imenu.el")
2014-10-24 06:04:21 -06:00
2014-11-12 00:36:24 -07:00
(use-package scala-mode2
:init
(progn (add-hook 'scala-mode-hook
2014-11-13 22:53:57 -07:00
(lambda ()
(require 'whitespace)
2014-11-12 00:36:24 -07:00
2014-11-13 22:53:57 -07:00
;; clean-up whitespace at save
(make-local-variable 'before-save-hook)
(add-hook 'before-save-hook 'whitespace-cleanup)
2014-11-12 00:36:24 -07:00
2014-11-13 22:53:57 -07:00
;; turn on highlight. To configure what is highlighted, customize
;; the *whitespace-style* variable. A sane set of things to
;; highlight is: face, tabs, trailing
(whitespace-mode))))
2014-11-12 00:36:24 -07:00
:config
(progn
(use-package ensime
:config (add-hook 'scala-mode-hook 'ensime-scala-mode-hook)
:ensure t)
(setq scala-indent:align-parameters t))
:mode (("\\.scala\\'" . scala-mode)
("\\.sc\\'" . scala-mode))
:ensure t)
2014-10-29 04:52:35 -06:00
;; =============================================================================
;; JavaScript
;; =============================================================================
2014-11-12 00:36:24 -07:00
(use-package js2-mode
:ensure t
:mode "\\.js\\'"
:config
(progn
(setq js-indent-level 2)
)
:bind
(("C-c b" . web-beautify-js)
("C-c b" . web-beautify-js))
:init
(progn
(add-hook 'js2-mode-hook (lambda () (tern-mode t)))
(add-hook 'js2-mode-hook 'skewer-mode)
(use-package tern
:ensure t
:config
(progn (tern-ac-setup))
:init
(progn
(use-package tern-auto-complete :ensure t
:commands tern-ac-setup)))))
2014-11-04 07:20:30 -07:00
2014-11-12 00:36:24 -07:00
(defvar packages-js '(js2-mode js3-mode web-beautify tern tern-auto-complete
slime-js skewer-mode skewer-reload-stylesheets))
2014-10-29 04:52:35 -06:00
2014-11-12 00:36:24 -07:00
(add-hook 'css-mode-hook #'skewer-css-mode)
(add-hook 'html-mode-hook #'skewer-html-mode)
2014-11-08 16:27:28 -07:00
;; (require 'slime-js)
;; (slime-js-init)
;; (require 'setup-slime-js)
;; (global-set-key [f5] 'slime-js-reload)
;; (add-hook 'js2-mode-hook
;; (lambda ()
;; (slime-js-minor-mode 1)))
(add-hook 'css-mode-hook
(lambda ()
(define-key css-mode-map "\M-\C-x" 'slime-js-refresh-css)
(define-key css-mode-map "\C-c\C-r" 'slime-js-embed-css)))
2014-11-12 00:36:24 -07:00
(eval-after-load 'sgml-mode
'(define-key html-mode-map (kbd "C-c b") 'web-beautify-html))
(eval-after-load 'css-mode
'(define-key css-mode-map (kbd "C-c b") 'web-beautify-css))
2014-10-31 05:19:11 -06:00
;; =============================================================================
;; C/C++
;; =============================================================================
2014-11-12 00:36:24 -07:00
(use-package helm-gtags
:ensure t
:config (custom-set-variables
'(helm-gtags-path-style 'relative)
'(helm-gtags-ignore-case t)
'(helm-gtags-auto-update t))
:bind
(("M-t" . helm-gtags-find-tag)
("M-r" . helm-gtags-find-rtag)
("M-s" . helm-gtags-find-symbol)
("M-g M-p" . helm-gtags-parse-file)
("C-c <" . helm-gtags-previous-history)
("C-c >" . helm-gtags-next-history)
("M-," . helm-gtags-pop-stack))
:init
(progn
;;; Enable helm-gtags-mode
(add-hook 'c-mode-hook 'helm-gtags-mode)
(add-hook 'c++-mode-hook 'helm-gtags-mode)
(add-hook 'asm-mode-hook 'helm-gtags-mode)))
2014-10-31 05:19:11 -06:00
2013-03-15 11:35:58 -06:00
;; =============================================================================
;; TeX
2013-03-15 11:35:58 -06:00
;; =============================================================================
2014-11-12 00:36:24 -07:00
(use-package tex-site
:ensure auctex
:config
(progn
(setq TeX-auto-save t)
(setq TeX-parse-self t)
(setq TeX-save-query nil)
(setq-default TeX-master nil)))
2014-10-29 09:45:30 -06:00
2014-11-03 01:02:01 -07:00
;; =============================================================================
;; functions
;; =============================================================================
2014-11-07 03:21:37 -07:00
(defun sudo-edit (&optional arg)
"Edit currently visited file as root.
With a prefix ARG prompt for a file to visit.
Will also prompt for a file to visit if current
buffer is not visiting a file."
(interactive "P")
(if (or arg (not buffer-file-name))
(find-file (concat "/sudo:root@localhost:"
(ido-read-file-name "Find file (as root): ")))
(find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))
2014-11-03 01:02:01 -07:00
(defun get-buffer-name()
(interactive)
(file-relative-name (buffer-file-name)))
(defun message-buffer-name()
(interactive)
(message (get-buffer-name)))
(defun os-copy (&optional b e)
(interactive "r")
(shell-command-on-region b e "source ~/.zshrc; cat | smart_copy"))
(defun os-paste ()
(interactive)
(insert (shell-command-to-string "source ~/.zshrc; ospaste")))
(defun all-copy (&optional b e)
(interactive "r")
(os-copy b e)
(tmux-copy b e)
(kill-ring-save b e))
(defun open-pdf ()
(interactive)
(let ( (pdf-file (replace-regexp-in-string "\.tex$" ".pdf" buffer-file-name)))
(shell-command (concat "open " pdf-file))))
(defun tmux-copy (&optional b e)
(interactive "r")
(shell-command-on-region b e "cat | tmux loadb -"))
(defun tmux-copy-buffer-name (&optional b e)
(interactive "r")
(shell-command (concat "echo " (shell-quote-argument (ffip-get-buffer-name))
" | tmux loadb -")))
(defun eval-and-replace ()
(interactive)
(backward-kill-sexp)
(condition-case nil
(prin1 (eval (read (current-kill 0)))
(current-buffer))
(error (message "Invalid expression")
(insert (current-kill 0)))))
;; =============================================================================
;; Custom Key Bindings
;; =============================================================================
2014-10-29 09:45:30 -06:00
2013-03-15 11:35:58 -06:00
;; Miscellaneous
2014-11-04 07:20:30 -07:00
(define-key lisp-mode-shared-map (kbd "C-c C-c") 'eval-defun)
2014-10-28 16:37:19 -06:00
(global-unset-key (kbd "C-o")) ;; Avoid collision with tmux binding.
2014-10-29 09:45:30 -06:00
(global-set-key (kbd "C--") 'undo)
(global-set-key (kbd "C-<") 'mc/mark-previous-like-this)
(global-set-key (kbd "C->") 'mc/mark-next-like-this)
(global-set-key (kbd "C->") 'mc/mark-next-like-this)
2014-10-29 09:45:30 -06:00
(global-set-key (kbd "C-c +") 'message-buffer-name)
(global-set-key (kbd "C-c <") 'mc/mark-all-like-this)
2014-11-03 01:02:01 -07:00
(global-set-key (kbd "C-c C-f") 'find-function-at-point)
(global-set-key (kbd "C-c C-r") 'eval-and-replace)
2014-11-07 03:21:37 -07:00
(global-set-key (kbd "C-c C-s") 'sudo-edit)
2014-11-08 16:27:28 -07:00
(global-set-key (kbd "C-c SPC") (lambda () (interactive)
(if current-prefix-arg (helm-global-mark-ring) (helm-mark-ring))))
2014-10-29 09:45:30 -06:00
(global-set-key (kbd "C-c e") 'os-copy)
(global-set-key (kbd "C-c g") 'jedi:goto-definition) ;; Should be python only
2014-11-12 00:36:24 -07:00
2014-10-29 09:45:30 -06:00
(global-set-key (kbd "C-c t") 'pytest-one)
2014-03-25 20:48:08 -06:00
(global-set-key (kbd "C-x C-b") 'buffer-menu)
2014-10-29 09:45:30 -06:00
(global-set-key (kbd "C-x C-c") 'kill-emacs)
(global-set-key (kbd "C-x C-i") 'imenu)
2014-03-25 20:48:08 -06:00
(global-set-key (kbd "C-x C-r") (lambda () (interactive) (revert-buffer t t)))
2014-10-29 09:45:30 -06:00
(global-set-key (kbd "C-x O") (lambda () (interactive) (other-window -1)))
(global-set-key (kbd "C-x f") 'helm-projectile-find-file)
(global-set-key (kbd "C-x r t") 'mc/edit-lines)
2014-10-29 09:45:30 -06:00
(global-set-key (kbd "C-x w") 'whitespace-mode)
(global-set-key (kbd "M-Z") 'zap-to-char)
2014-03-25 20:48:08 -06:00
(global-set-key (kbd "M-g") 'goto-line)
(global-set-key (kbd "M-n") 'forward-paragraph)
(global-set-key (kbd "M-p") 'backward-paragraph)
(global-set-key (kbd "M-y") 'helm-show-kill-ring)
(global-set-key (kbd "M-z") 'zap-up-to-char)
2014-06-11 18:15:56 -06:00
2013-03-16 21:09:42 -06:00
;; =============================================================================
;; Appearance
;; =============================================================================
2014-11-11 17:31:59 -07:00
;; No splash screen please... jeez
(setq inhibit-startup-screen t)
2014-11-12 00:36:24 -07:00
(blink-cursor-mode -1)
2014-11-11 17:31:59 -07:00
2014-10-29 09:45:30 -06:00
;; make whitespace-mode use just basic coloring
(setq whitespace-style (quote (spaces tabs newline ;;space-mark
tab-mark newline-mark)))
(setq whitespace-display-mappings
'((space-mark 32 [183] [46])
(tab-mark 9 [9655 9] [92 9])))
(defun colorize-compilation-buffer ()
2014-11-08 16:27:28 -07:00
(read-only-mode)
2014-10-29 09:45:30 -06:00
(ansi-color-apply-on-region (point-min) (point-max))
2014-11-08 16:27:28 -07:00
(read-only-mode))
2014-10-29 09:45:30 -06:00
(add-hook 'compilation-filter-hook 'colorize-compilation-buffer)
;; smart-mode-line
(sml/setup)
(sml/apply-theme 'respectful)
;; =============================================================================
;; Themes
;; =============================================================================
;; Choose random theme:
2014-11-03 01:02:01 -07:00
;; (defvar dark-themes '(monokai molokai solarized-dark base16-default))
;; (defvar light-themes '(zenburn solarized-light))
2014-11-10 05:51:35 -07:00
(defvar dark-themes '(monokai))
(defvar light-themes '(monokai))
(defun random-choice (choices)
(nth (random (length choices)) choices))
(defun get-appropriate-theme ()
(let ((hour
(string-to-number (format-time-string "%H"))))
2014-11-08 16:27:28 -07:00
(if (or (< hour 8) (> hour 18))
2014-11-04 16:19:31 -07:00
(random-choice dark-themes) (random-choice light-themes))))
(setq current-theme nil)
(defun set-theme ()
(interactive)
(let ((appropriate-theme (get-appropriate-theme)))
(if (eq appropriate-theme current-theme)
nil
2014-11-08 16:27:28 -07:00
(progn (load-theme appropriate-theme t)
(setq current-theme appropriate-theme)))))
2014-11-10 06:40:13 -07:00
;;(defvar fonts '("DejaVu Sans Mono-10" "monaco-11" "Inconsolata-12" "menlo-10"))
(defvar fonts '("monaco-11"))
2014-11-10 06:40:13 -07:00
2014-11-10 05:51:35 -07:00
(defun set-my-font-for-frame (frame)
(condition-case exp
2014-11-10 06:40:13 -07:00
(set-default-font (random-choice fonts) nil t)
2014-11-10 05:51:35 -07:00
('error (package-refresh-contents)
(set-default-font "monaco-11" nil t) nil)))
2014-11-10 05:51:35 -07:00
2014-11-06 03:57:35 -07:00
(defun remove-fringe-and-hl-line-mode (&rest stuff)
2014-11-09 23:17:49 -07:00
(scroll-bar-mode -1)
(tool-bar-mode -1)
(menu-bar-mode -1)
2014-11-09 23:53:10 -07:00
(set-fringe-mode 0)
2014-11-10 05:51:35 -07:00
(set-my-font-for-frame nil)
(setq hl-line-mode nil))
(if (or
(and (>= emacs-major-version 24)
(>= emacs-minor-version 4))
(>= emacs-major-version 25))
(advice-add 'load-theme :after #'remove-fringe-and-hl-line-mode)
(defadvice load-theme (after name activate)
(remove-fringe-and-hl-line-mode)))
2014-11-10 05:37:48 -07:00
;; enable to set theme based on time of day.
2014-11-06 03:57:35 -07:00
(run-at-time "00:00" 3600 'set-theme)
2014-11-10 05:37:48 -07:00
2014-11-10 18:25:13 -07:00
;; This is needed because you can't set the font at daemon start-up.
2014-11-10 05:51:35 -07:00
(add-hook 'after-make-frame-functions 'set-my-font-for-frame)