2014-12-03 15:38:14 -07:00
|
|
|
;; -*- lexical-binding: t; -*-
|
|
|
|
;; =============================================================================
|
|
|
|
;; ___ _ __ ___ __ _ ___ ___
|
|
|
|
;; / _ \ '_ ` _ \ / _` |/ __/ __|
|
|
|
|
;; | __/ | | | | | (_| | (__\__ \
|
|
|
|
;; (_)___|_| |_| |_|\__,_|\___|___/
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
(setq user-full-name
|
|
|
|
(replace-regexp-in-string "\n$" "" (shell-command-to-string
|
2014-12-14 03:39:02 -07:00
|
|
|
"git config --get user.name")))
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq user-mail-address
|
|
|
|
(replace-regexp-in-string "\n$" "" (shell-command-to-string
|
2014-12-14 03:39:02 -07:00
|
|
|
"git config --get user.email")))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(defun emacs24_4-p ()
|
|
|
|
(or (and (>= emacs-major-version 24)
|
|
|
|
(>= emacs-minor-version 4))
|
|
|
|
(>= emacs-major-version 25)))
|
|
|
|
|
2015-06-15 17:39:11 -06:00
|
|
|
(when (equal system-type 'darwin)
|
|
|
|
(setq mac-option-modifier 'meta)
|
|
|
|
(setq mac-command-modifier 'super))
|
2015-06-15 06:05:54 -06:00
|
|
|
|
2015-02-05 16:00:19 -07:00
|
|
|
;; =============================================================================
|
|
|
|
;; Load Path Configuration
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(defvar machine-custom "~/.emacs.d/this-machine.el")
|
2015-03-09 16:39:58 -06:00
|
|
|
(setq custom-file "~/.emacs.d/custom-before.el")
|
|
|
|
(when (file-exists-p custom-file) (load custom-file))
|
|
|
|
(setq custom-after-file "~/.emacs.d/custom-after.el")
|
2015-02-05 16:00:19 -07:00
|
|
|
(when (file-exists-p machine-custom) (load machine-custom))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
;; =============================================================================
|
|
|
|
;; GUI Disables
|
|
|
|
;; =============================================================================
|
|
|
|
|
2014-12-06 22:46:36 -07:00
|
|
|
;; Turn off mouse interface early in startup to avoid momentary display
|
2014-12-03 15:38:14 -07:00
|
|
|
(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))
|
|
|
|
|
|
|
|
;; These silence the byte compiler.
|
|
|
|
(defvar ido-cur-item nil)
|
|
|
|
(defvar ido-default-item nil)
|
|
|
|
(defvar ido-context-switch-command nil)
|
|
|
|
(defvar ido-cur-list nil)
|
|
|
|
(defvar inherit-input-method nil)
|
2015-08-04 18:48:14 -06:00
|
|
|
(defvar grep-find-ignored-files nil)
|
2015-08-07 16:20:36 -06:00
|
|
|
(defvar grep-find-ignored-directories nil)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; ELPA/package.el/MELPA
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(require 'package)
|
|
|
|
(add-to-list 'package-archives
|
2015-01-02 13:24:19 -07:00
|
|
|
'("marmalade" . "http://marmalade-repo.org/packages/") t)
|
2014-12-03 15:38:14 -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)
|
|
|
|
|
|
|
|
(defun ensure-packages-installed (packages)
|
|
|
|
(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))
|
2015-03-25 20:37:55 -06:00
|
|
|
|
2015-08-15 01:12:38 -06:00
|
|
|
;; use-package is only needed at compile time.
|
|
|
|
(eval-when-compile (require 'use-package))
|
2015-03-25 20:37:55 -06:00
|
|
|
(require 'diminish)
|
2015-04-08 16:10:44 -06:00
|
|
|
(require 'bind-key)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-08-15 00:29:02 -06:00
|
|
|
(use-package bug-hunter
|
|
|
|
:ensure t)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package benchmark-init
|
|
|
|
:ensure t
|
2015-06-21 14:35:57 -06:00
|
|
|
;; this variable has to be set in custom-before.el
|
|
|
|
:if (and (boundp 'do-benchmark) do-benchmark))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Config Free Packages
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(defvar packages-eager
|
2015-08-16 04:24:18 -06:00
|
|
|
'(popup yasnippet cl-lib
|
2014-12-03 15:38:14 -07:00
|
|
|
xclip dired+ ctags ctags-update aggressive-indent imenu+ neotree diminish
|
|
|
|
gist))
|
|
|
|
|
2015-01-02 12:54:55 -07:00
|
|
|
(ensure-packages-installed packages-eager)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Disables
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(setq visible-bell nil)
|
|
|
|
(setq sentence-end-double-space nil)
|
|
|
|
|
|
|
|
;; Disable the creation of backup files.
|
|
|
|
(setq backup-inhibited t)
|
|
|
|
(setq make-backup-files nil)
|
|
|
|
(setq auto-save-default nil)
|
|
|
|
|
|
|
|
(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)
|
|
|
|
|
|
|
|
|
|
|
|
(put 'set-goal-column 'disabled nil)
|
|
|
|
(auto-fill-mode -1)
|
|
|
|
(setq indent-tabs-mode nil)
|
|
|
|
(setq flyspell-issue-welcome-flag nil)
|
|
|
|
|
|
|
|
;; 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)
|
|
|
|
(setq split-width-threshold 160)
|
|
|
|
|
|
|
|
;; No popup frames.
|
|
|
|
(setq ns-pop-up-frames nil)
|
|
|
|
(setq pop-up-frames nil)
|
2014-12-04 23:20:49 -07:00
|
|
|
(setq confirm-nonexistent-file-or-buffer nil)
|
|
|
|
|
|
|
|
;; No prompt for killing a buffer with processes attached.
|
|
|
|
(setq kill-buffer-query-functions
|
|
|
|
(remq 'process-kill-buffer-query-function
|
|
|
|
kill-buffer-query-functions))
|
|
|
|
|
|
|
|
(setq inhibit-startup-message t
|
|
|
|
inhibit-startup-echo-area-message t)
|
|
|
|
|
2014-12-06 03:18:28 -07:00
|
|
|
(when (fboundp 'tooltip-mode) (tooltip-mode -1))
|
2014-12-04 23:20:49 -07:00
|
|
|
(setq tooltip-use-echo-area t)
|
|
|
|
|
|
|
|
(setq use-dialog-box nil)
|
|
|
|
|
|
|
|
(defadvice yes-or-no-p (around prevent-dialog activate)
|
|
|
|
"Prevent yes-or-no-p from activating a dialog"
|
|
|
|
(let ((use-dialog-box nil))
|
|
|
|
ad-do-it))
|
|
|
|
|
|
|
|
(defadvice y-or-n-p (around prevent-dialog-yorn activate)
|
|
|
|
"Prevent y-or-n-p from activating a dialog"
|
|
|
|
(let ((use-dialog-box nil))
|
|
|
|
ad-do-it))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; functions
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-08-05 12:22:28 -06:00
|
|
|
(defmacro imalison:prefix-alternative (name default alternative)
|
|
|
|
`(defun ,name (arg) (interactive "P")
|
|
|
|
(if arg (call-interactively (quote ,alternative))
|
|
|
|
(call-interactively (quote ,default)))))
|
|
|
|
|
2015-06-30 23:09:54 -06:00
|
|
|
(defun imalison:uuid ()
|
|
|
|
(interactive)
|
|
|
|
(s-replace "\n" "" (shell-command-to-string "uuid")))
|
2015-06-30 23:10:38 -06:00
|
|
|
|
2015-08-16 00:19:53 -06:00
|
|
|
(defun imalison:disable-linum-mode ()
|
|
|
|
(linum-mode 0))
|
|
|
|
|
2015-07-09 19:29:44 -06:00
|
|
|
(defun imalison:insert-uuid ()
|
|
|
|
(interactive)
|
|
|
|
(insert (imalison:uuid)))
|
|
|
|
|
2015-01-30 22:48:17 -07:00
|
|
|
(defmacro suppress-messages (&rest forms)
|
|
|
|
`(flet ((message (&rest r) nil))
|
|
|
|
,@forms))
|
|
|
|
|
2015-08-16 02:51:48 -06:00
|
|
|
(defun imalison:compare-int-list (a b)
|
2015-01-18 15:40:55 -07:00
|
|
|
(when (and a b)
|
|
|
|
(cond ((> (car a) (car b)) 1)
|
|
|
|
((< (car a) (car b)) -1)
|
2015-08-16 02:51:48 -06:00
|
|
|
(t (imalison:compare-int-list (cdr a) (cdr b))))))
|
2015-01-18 15:40:55 -07:00
|
|
|
|
|
|
|
(defun get-date-created-from-agenda-entry (agenda-entry)
|
|
|
|
(org-time-string-to-time
|
|
|
|
(org-entry-get (get-text-property 1 'org-marker agenda-entry) "CREATED")))
|
|
|
|
|
2014-12-15 17:50:03 -07:00
|
|
|
(defmacro defvar-setq (name value)
|
|
|
|
(if (boundp name)
|
|
|
|
`(setq ,name ,value)
|
|
|
|
`(defvar ,name ,value)))
|
|
|
|
|
2015-06-29 04:09:06 -06:00
|
|
|
(defun imalison:imenu-prefix-flattened (index)
|
|
|
|
(let ((flattened (imalison:flatten-imenu-index (cdr index))))
|
|
|
|
(cl-loop for sub-item in flattened
|
|
|
|
collect
|
|
|
|
`(,(concat (car index) "." (car sub-item)) . ,(cdr sub-item)))))
|
|
|
|
|
|
|
|
(defun imalison:flatten-imenu-index (index)
|
|
|
|
(let ((cdr-is-index (listp (cdr index))))
|
|
|
|
(cond ((not (stringp (car index))) (cl-mapcan #'imalison:flatten-imenu-index index))
|
|
|
|
(cdr-is-index (imalison:imenu-prefix-flattened index))
|
|
|
|
(t (list index)))))
|
|
|
|
|
2015-08-07 18:00:51 -06:00
|
|
|
(defun imalison:make-imenu-index-flat ()
|
|
|
|
(let ((original-imenu-function imenu-create-index-function))
|
|
|
|
(setq imenu-create-index-function
|
|
|
|
(lambda ()
|
|
|
|
(imalison:flatten-imenu-index
|
|
|
|
(funcall original-imenu-function))))))
|
|
|
|
|
2015-06-29 11:14:25 -06:00
|
|
|
(defmacro defvar-if-non-existent (name value)
|
2015-06-28 21:39:22 -06:00
|
|
|
(unless (boundp name)
|
|
|
|
`(defvar ,name ,value)))
|
|
|
|
|
2014-12-24 02:17:38 -07:00
|
|
|
(defun eval-region-or-last-sexp ()
|
|
|
|
(interactive)
|
2014-12-31 07:44:47 -07:00
|
|
|
(if (region-active-p) (call-interactively 'eval-region)
|
|
|
|
(call-interactively 'eval-last-sexp)))
|
2014-12-24 02:17:38 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(defun undo-redo (&optional arg)
|
|
|
|
(interactive "P")
|
|
|
|
(if arg (undo-tree-redo) (undo-tree-undo)))
|
|
|
|
|
|
|
|
(defun up-list-region ()
|
|
|
|
(interactive)
|
|
|
|
(up-list) (set-mark-command nil) (backward-sexp))
|
|
|
|
|
|
|
|
(defun up-list-back ()
|
|
|
|
(interactive)
|
|
|
|
(up-list) (backward-sexp))
|
|
|
|
|
|
|
|
(defun unfill-paragraph (&optional region)
|
|
|
|
"Takes a multi-line paragraph and makes it into a single line of text."
|
|
|
|
(interactive (progn
|
|
|
|
(barf-if-buffer-read-only)
|
|
|
|
(list t)))
|
|
|
|
(let ((fill-column (point-max)))
|
|
|
|
(fill-paragraph nil region)))
|
|
|
|
|
|
|
|
(defun fill-or-unfill-paragraph (&optional unfill region)
|
|
|
|
"Fill paragraph (or REGION). With the prefix argument UNFILL,
|
|
|
|
unfill it instead."
|
|
|
|
(interactive (progn
|
|
|
|
(barf-if-buffer-read-only)
|
|
|
|
(list (if current-prefix-arg 'unfill) t)))
|
|
|
|
(let ((fill-column (if unfill (point-max) fill-column)))
|
|
|
|
(fill-paragraph nil region)))
|
|
|
|
|
|
|
|
(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))))
|
|
|
|
|
|
|
|
(defun frame-exists ()
|
|
|
|
(cl-find-if
|
|
|
|
(lambda (frame)
|
|
|
|
(assoc 'display (frame-parameters frame))) (frame-list)))
|
|
|
|
|
2015-06-29 00:30:39 -06:00
|
|
|
(defun imalison:copy-shell-command-on-region (start end command)
|
|
|
|
(interactive (list (region-beginning) (region-end)
|
|
|
|
(read-shell-command "Shell command on region: ")))
|
|
|
|
(let ((original-buffer (current-buffer)))
|
|
|
|
(with-temp-buffer
|
|
|
|
(let ((temp-buffer (current-buffer)))
|
|
|
|
(with-current-buffer original-buffer
|
|
|
|
(shell-command-on-region start end command temp-buffer))
|
|
|
|
(kill-ring-save (point-max) (point-min))))))
|
|
|
|
|
|
|
|
(defun imalison:shell-command-on-region-replace (start end command)
|
|
|
|
(interactive (list (region-beginning) (region-end)
|
|
|
|
(read-shell-command "Shell command on region: ")))
|
|
|
|
(shell-command-on-region start end command nil t))
|
|
|
|
|
|
|
|
(defun imalison:shell-command-on-region (arg)
|
|
|
|
(interactive "P")
|
|
|
|
(call-interactively (if arg 'imalison:shell-command-on-region-replace
|
|
|
|
'imalison:copy-shell-command-on-region)))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(defun make-frame-if-none-exists ()
|
|
|
|
(let* ((existing-frame (frame-exists)))
|
|
|
|
(if existing-frame
|
|
|
|
existing-frame
|
|
|
|
(make-frame-on-display (getenv "DISPLAY")))))
|
|
|
|
|
|
|
|
(defun make-frame-if-none-exists-and-focus ()
|
|
|
|
(make-frame-visible (select-frame (make-frame-if-none-exists))))
|
|
|
|
|
2015-06-23 15:38:16 -06:00
|
|
|
(defun copy-buffer-file-name ()
|
|
|
|
(interactive)
|
|
|
|
(add-string-to-kill-ring (file-name-nondirectory (buffer-file-name))))
|
|
|
|
|
|
|
|
(defun copy-buffer-file-path ()
|
|
|
|
(interactive)
|
|
|
|
(add-string-to-kill-ring (file-relative-name (buffer-file-name) (projectile-project-root))))
|
|
|
|
|
|
|
|
(defun add-string-to-kill-ring (string)
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert string)
|
|
|
|
(kill-ring-save (point-max) (point-min))))
|
|
|
|
|
|
|
|
(defun os-copy-string (string)
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert string)
|
|
|
|
(os-copy (beginning-of-buffer) (end-of-buffer))))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(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))))
|
|
|
|
|
2015-01-02 13:27:44 -07:00
|
|
|
(defun tmux-copy (&optional b e)
|
2014-12-03 15:38:14 -07:00
|
|
|
(interactive "r")
|
|
|
|
(shell-command-on-region b e "cat | 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)))))
|
|
|
|
|
|
|
|
(defun flatten-imenu-index (index)
|
|
|
|
(cl-mapcan
|
|
|
|
(lambda (x)
|
|
|
|
(if (listp (cdr x))
|
|
|
|
(cl-mapcar (lambda (item)
|
|
|
|
`(,(concat (car x) "/" (car item)) . ,(cdr item)))
|
|
|
|
(flatten-imenu-index (cdr x)))
|
|
|
|
(list x))) index))
|
|
|
|
|
|
|
|
(defun flatten-imenu-index-function (function)
|
|
|
|
(lambda () (flatten-imenu-index (funcall function))))
|
|
|
|
|
|
|
|
(defun flatten-current-imenu-index-function ()
|
|
|
|
(setq imenu-create-index-function
|
|
|
|
(flatten-imenu-index-function imenu-create-index-function)))
|
|
|
|
|
|
|
|
(defun notification-center (title message)
|
|
|
|
(flet ((encfn (s) (encode-coding-string s (keyboard-coding-system))))
|
|
|
|
(shell-command
|
|
|
|
(format "osascript -e 'display notification \"%s\" with title \"%s\"'"
|
|
|
|
(encfn message) (encfn title)))))
|
|
|
|
|
|
|
|
(defun growl-notify (title message)
|
|
|
|
(shell-command (format "grownotify -t %s -m %s" title message)))
|
|
|
|
|
2014-12-09 20:31:59 -07:00
|
|
|
(defun notify-send (title message)
|
|
|
|
(shell-command (format "notify-send -u critical %s %s" title message)))
|
|
|
|
|
|
|
|
(defvar notify-function
|
|
|
|
(cond ((eq system-type 'darwin) 'notification-center)
|
|
|
|
((eq system-type 'gnu/linux) 'notify-send)))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(defun project-root-of-file (filename)
|
|
|
|
"Retrieves the root directory of a project if available.
|
|
|
|
The current directory is assumed to be the project's root otherwise."
|
|
|
|
(file-truename
|
|
|
|
(let ((dir (file-truename filename)))
|
|
|
|
(or (--reduce-from
|
|
|
|
(or acc
|
|
|
|
(let* ((cache-key (format "%s-%s" it dir))
|
2014-12-08 05:34:31 -07:00
|
|
|
(cache-value (gethash cache-key
|
|
|
|
projectile-project-root-cache)))
|
2014-12-03 15:38:14 -07:00
|
|
|
(if cache-value
|
|
|
|
(if (eq cache-value 'no-project-root)
|
|
|
|
nil
|
|
|
|
cache-value)
|
|
|
|
(let ((value (funcall it dir)))
|
2014-12-08 05:34:31 -07:00
|
|
|
(puthash cache-key (or value 'no-project-root)
|
|
|
|
projectile-project-root-cache)
|
2014-12-03 15:38:14 -07:00
|
|
|
value))))
|
|
|
|
nil
|
|
|
|
projectile-project-root-files-functions)
|
|
|
|
(if projectile-require-project-root
|
|
|
|
(error "You're not in a project")
|
|
|
|
default-directory)))))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; General Emacs Options
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-08-17 03:44:27 -06:00
|
|
|
(unless (server-running-p) (server-start))
|
|
|
|
|
2015-02-03 12:55:04 -07:00
|
|
|
(global-auto-revert-mode)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
;; This makes it so that emacs --daemon puts its files in ~/.emacs.d/server
|
|
|
|
(setq server-use-tcp t)
|
|
|
|
|
|
|
|
;; Display line and column numbers in mode line.
|
|
|
|
(line-number-mode t)
|
|
|
|
(column-number-mode t)
|
|
|
|
(global-linum-mode t)
|
|
|
|
(setq visible-bell t)
|
|
|
|
(show-paren-mode 1)
|
|
|
|
|
|
|
|
;; Make buffer names unique.
|
|
|
|
(setq uniquify-buffer-name-style 'forward)
|
|
|
|
|
2015-06-15 06:08:35 -06:00
|
|
|
;; We want closures
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq lexical-binding t)
|
|
|
|
|
2015-08-15 01:11:45 -06:00
|
|
|
;; Don't disable commands...
|
|
|
|
(setq disabled-command-function nil)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; Make forward word understand camel and snake case.
|
|
|
|
(setq c-subword-mode t)
|
|
|
|
|
2015-06-29 11:17:42 -06:00
|
|
|
;; Preserve pastes from OS when saving a new item to the kill
|
2015-08-07 01:49:56 -06:00
|
|
|
;; ring. Why wouldn't this be enabled by default?
|
2014-12-04 23:20:49 -07:00
|
|
|
(setq save-interprogram-paste-before-kill t)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(setq-default cursor-type 'box)
|
|
|
|
(setq-default cursor-in-non-selected-windows 'bar)
|
|
|
|
|
2015-08-10 14:08:51 -06:00
|
|
|
(if nil ;; Causing too many annoying issues
|
|
|
|
(add-hook 'after-init-hook '(lambda () (setq debug-on-error t))))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; Make mouse scrolling less jumpy.
|
|
|
|
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1)))
|
|
|
|
|
2014-12-08 02:02:57 -07:00
|
|
|
(eval-after-load 'subword '(diminish 'subword-mode))
|
2014-12-12 21:35:00 -07:00
|
|
|
(eval-after-load 'simple '(diminish 'visual-line-mode))
|
2014-12-08 02:02:57 -07:00
|
|
|
|
2014-12-08 05:34:31 -07:00
|
|
|
(display-time-mode 1)
|
2015-08-07 01:49:56 -06:00
|
|
|
(setq reb-re-syntax 'string) ;; the only sane option...
|
2014-12-11 16:30:18 -07:00
|
|
|
|
|
|
|
(setq ediff-split-window-function 'split-window-horizontally)
|
2015-01-18 05:55:03 -07:00
|
|
|
(setq ediff-window-setup-function 'ediff-setup-windows-plain)
|
2014-12-08 05:34:31 -07:00
|
|
|
|
2015-08-07 01:49:56 -06:00
|
|
|
;; Disable this per major mode or maybe using file size if it causes
|
2015-06-29 04:08:05 -06:00
|
|
|
;; performance issues?
|
|
|
|
(setq imenu-auto-rescan t)
|
2015-07-01 01:45:06 -06:00
|
|
|
(setq imenu-max-item-length 300)
|
2015-06-29 04:08:05 -06:00
|
|
|
|
2015-07-01 01:45:22 -06:00
|
|
|
(put 'narrow-to-region 'disabled nil)
|
|
|
|
(put 'narrow-to-page 'disabled nil)
|
|
|
|
|
2015-08-15 01:12:55 -06:00
|
|
|
(setq echo-keystrokes 0.25)
|
|
|
|
|
2014-12-08 05:34:31 -07:00
|
|
|
;; =============================================================================
|
|
|
|
;; use-package
|
|
|
|
;; =============================================================================
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-08-17 03:45:29 -06:00
|
|
|
(use-package list-environment
|
|
|
|
:ensure t)
|
|
|
|
|
2015-08-16 04:24:18 -06:00
|
|
|
(use-package paradox
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(setq paradox-execute-asynchronously t)))
|
|
|
|
|
2015-08-16 23:45:09 -06:00
|
|
|
(use-package term
|
2015-08-16 00:19:53 -06:00
|
|
|
:config
|
|
|
|
(progn (add-hook 'term-mode-hook 'imalison:disable-linum-mode)))
|
|
|
|
|
2014-12-06 13:48:22 -07:00
|
|
|
;; Set path from shell.
|
|
|
|
(use-package exec-path-from-shell
|
|
|
|
:ensure t
|
|
|
|
:config (exec-path-from-shell-initialize))
|
|
|
|
|
2014-12-11 17:14:58 -07:00
|
|
|
(use-package yasnippet
|
|
|
|
:ensure t
|
2015-03-25 20:37:55 -06:00
|
|
|
:defer 5
|
2015-01-03 12:30:00 -07:00
|
|
|
:commands (yas-global-mode)
|
2014-12-11 17:14:58 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-07-29 21:10:36 -06:00
|
|
|
(yas-global-mode)
|
2014-12-11 17:14:58 -07:00
|
|
|
(diminish 'yas-minor-mode)
|
2015-08-15 01:12:01 -06:00
|
|
|
(add-hook 'term-mode-hook (lambda() (yas-minor-mode -1)))
|
2014-12-18 10:29:50 -07:00
|
|
|
(setq yas-prompt-functions
|
|
|
|
(cons 'yas-ido-prompt
|
|
|
|
(cl-delete 'yas-ido-prompt yas-prompt-functions)))))
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package tramp
|
|
|
|
:commands tramp
|
|
|
|
:config
|
|
|
|
(setq tramp-default-method "ssh"))
|
|
|
|
|
2015-08-13 01:46:10 -06:00
|
|
|
(use-package shackle
|
|
|
|
:ensure t
|
|
|
|
:config
|
2015-08-16 15:43:39 -06:00
|
|
|
(progn
|
|
|
|
(diminish 'shackle-mode)
|
|
|
|
(shackle-mode)
|
|
|
|
(setq shackle-inhibit-window-quit-on-same-windows t)
|
|
|
|
(setq shackle-default-rule '(:same t))))
|
2015-08-13 01:46:10 -06:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
;; text mode stuff:
|
|
|
|
(remove-hook 'text-mode-hook #'turn-on-auto-fill)
|
|
|
|
(add-hook 'text-mode-hook 'turn-on-visual-line-mode)
|
|
|
|
(setq sentence-end-double-space nil)
|
|
|
|
|
|
|
|
;; y and n instead of yes and no
|
|
|
|
(defalias 'yes-or-no-p 'y-or-n-p)
|
|
|
|
|
|
|
|
(use-package discover-my-major :ensure t)
|
|
|
|
|
2015-08-04 12:00:02 -06:00
|
|
|
(use-package which-key
|
2014-12-03 15:38:14 -07:00
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
2015-08-17 00:22:41 -06:00
|
|
|
(setq which-key-idle-delay .15)
|
2015-08-16 15:43:39 -06:00
|
|
|
(diminish 'which-key-mode)
|
2015-08-04 12:00:02 -06:00
|
|
|
(which-key-mode)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2014-12-22 11:09:03 -07:00
|
|
|
(use-package jump-char
|
|
|
|
:bind (("C-;" . jump-char-forward))
|
|
|
|
:ensure t)
|
2014-12-10 01:39:41 -07:00
|
|
|
|
2015-08-05 12:22:41 -06:00
|
|
|
(imalison:prefix-alternative imalison:avy avy-goto-word-1 avy-goto-char)
|
2015-06-28 17:05:48 -06:00
|
|
|
(use-package avy
|
2014-12-03 15:38:14 -07:00
|
|
|
:ensure t
|
2015-08-05 12:22:41 -06:00
|
|
|
:bind (("C-j" . imalison:avy)
|
|
|
|
("M-g l" . avy-goto-line)
|
2015-06-28 17:05:48 -06:00
|
|
|
("C-'" . avy-goto-char-2)))
|
|
|
|
|
2015-08-13 20:51:39 -06:00
|
|
|
(imalison:prefix-alternative imalison:ace-window ace-select-window ace-swap-window)
|
2015-06-28 17:05:48 -06:00
|
|
|
(use-package ace-window
|
|
|
|
:ensure t
|
|
|
|
:config (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l))
|
2015-08-13 20:51:39 -06:00
|
|
|
:bind ("C-c w" . imalison:ace-window))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-01-23 14:43:59 -07:00
|
|
|
(use-package flycheck
|
|
|
|
:ensure t
|
|
|
|
:config
|
2015-01-26 01:44:46 -07:00
|
|
|
(progn (global-flycheck-mode))
|
2015-01-23 14:43:59 -07:00
|
|
|
:diminish flycheck-mode)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(use-package haskell-mode
|
|
|
|
:ensure t
|
|
|
|
:commands haskell-mode
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)))
|
|
|
|
|
2015-06-21 19:30:47 -06:00
|
|
|
(use-package narrow-indirect
|
|
|
|
:ensure t
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(define-key ctl-x-4-map "nd" 'ni-narrow-to-defun-indirect-other-window)
|
|
|
|
(define-key ctl-x-4-map "nn" 'ni-narrow-to-region-indirect-other-window)
|
|
|
|
(define-key ctl-x-4-map "np" 'ni-narrow-to-page-indirect-other-window)))
|
|
|
|
|
2015-08-13 01:48:58 -06:00
|
|
|
(use-package editorconfig
|
|
|
|
:ensure t
|
|
|
|
:demand t)
|
|
|
|
|
2015-06-21 14:35:10 -06:00
|
|
|
(use-package dtrt-indent
|
|
|
|
:ensure t
|
|
|
|
:init (add-hook 'prog-mode-hook 'dtrt-indent-mode))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package rainbow-delimiters
|
|
|
|
:ensure t
|
|
|
|
:commands rainbow-delimiters-mode
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(add-hook 'prog-mode-hook (lambda () (rainbow-delimiters-mode t)))))
|
|
|
|
|
2014-12-12 05:34:07 -07:00
|
|
|
(use-package diff-hl :ensure t)
|
|
|
|
|
2015-08-16 04:25:00 -06:00
|
|
|
(use-package gitolite-clone :ensure t)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package magit
|
|
|
|
:ensure t
|
|
|
|
:commands magit-status
|
|
|
|
:bind (("C-x g" . magit-status))
|
2015-07-03 17:09:48 -06:00
|
|
|
:init
|
|
|
|
(defvar-setq magit-last-seen-setup-instructions "1.4.0")
|
2014-12-03 15:38:14 -07:00
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(use-package magit-filenotify
|
2014-12-09 20:31:59 -07:00
|
|
|
;; Seems like OSX does not support filenotify.
|
2014-12-03 15:38:14 -07:00
|
|
|
:disabled t
|
|
|
|
:ensure t
|
|
|
|
:if (emacs24_4-p)
|
|
|
|
:config
|
|
|
|
:init (add-hook 'magit-status-mode-hook 'magit-filenotify-mode))))
|
|
|
|
|
|
|
|
(use-package company
|
|
|
|
:ensure t
|
|
|
|
:commands company-mode
|
2014-12-12 05:34:07 -07:00
|
|
|
:bind (("C-\\" . company-complete))
|
2015-01-02 13:27:44 -07:00
|
|
|
:config
|
2014-12-12 05:34:07 -07:00
|
|
|
(progn
|
|
|
|
(setq company-idle-delay .25)
|
|
|
|
(global-company-mode)
|
|
|
|
(diminish 'company-mode))
|
2014-12-03 15:38:14 -07:00
|
|
|
:init
|
|
|
|
(add-hook 'prog-mode-hook (lambda () (company-mode t))))
|
|
|
|
|
|
|
|
(use-package expand-region
|
|
|
|
:ensure t
|
|
|
|
:commands er/expand-region
|
|
|
|
:config (setq expand-region-contract-fast-key "j")
|
|
|
|
:bind (("C-c k" . er/expand-region)))
|
|
|
|
|
|
|
|
(use-package multiple-cursors
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(use-package phi-search-mc
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(phi-search-mc/setup-keys))
|
|
|
|
(use-package mc-extras
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(define-key mc/keymap (kbd "C-. =") 'mc/compare-chars)))
|
2015-01-02 13:27:44 -07:00
|
|
|
:bind
|
2014-12-03 15:38:14 -07:00
|
|
|
(("C-c m a" . mc/mark-all-like-this)
|
|
|
|
("C-c m m" . mc/mark-all-like-this-dwim)
|
|
|
|
("C-c m l" . mc/edit-lines)
|
|
|
|
("C-c m n" . mc/mark-next-like-this)
|
|
|
|
("C-c m p" . mc/mark-previous-like-this)
|
|
|
|
("C-c m s" . mc/mark-sgml-tag-pair)
|
|
|
|
("C-c m d" . mc/mark-all-like-this-in-defun)))
|
|
|
|
|
|
|
|
(use-package undo-tree
|
2015-06-30 23:10:38 -06:00
|
|
|
:disabled t ;; this has been getting pretty annoying
|
2014-12-03 15:38:14 -07:00
|
|
|
:ensure t
|
|
|
|
:bind (("C--" . undo-redo)
|
|
|
|
("C-c u" . undo-tree-visualize)
|
|
|
|
("C-c r" . undo-tree-redo))
|
|
|
|
:config
|
|
|
|
(diminish 'undo-tree-mode)
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
;;(setq undo-tree-visualizer-diff t) ;; This causes performance problems
|
|
|
|
(global-undo-tree-mode)
|
|
|
|
(setq undo-tree-visualizer-timestamps t)))
|
|
|
|
|
|
|
|
(use-package string-inflection
|
|
|
|
:ensure t
|
|
|
|
:commands string-inflection-toggle
|
|
|
|
:bind ("C-c l" . string-inflection-toggle))
|
|
|
|
|
2014-12-08 05:34:31 -07:00
|
|
|
(use-package load-dir
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(add-to-list 'load-dirs "~/.emacs.d/load.d")
|
|
|
|
(defvar site-lisp "/usr/share/emacs24/site-lisp/")
|
|
|
|
(when (file-exists-p site-lisp) (add-to-list 'load-dirs site-lisp))))
|
|
|
|
|
2014-12-08 17:32:57 -07:00
|
|
|
(use-package recentf
|
|
|
|
;; binding is in helm.
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(recentf-mode 1)
|
|
|
|
(setq recentf-max-menu-items 500)))
|
|
|
|
|
2015-06-15 06:06:26 -06:00
|
|
|
(use-package zop-to-char
|
|
|
|
:ensure t
|
|
|
|
:bind ("M-z" . zop-to-char))
|
|
|
|
|
2015-06-21 14:35:21 -06:00
|
|
|
(use-package restclient
|
2015-06-21 18:38:59 -06:00
|
|
|
:ensure t
|
|
|
|
:mode (("\\.restclient\\'" . restclient-mode)))
|
2015-06-21 14:35:21 -06:00
|
|
|
|
2015-07-26 02:37:51 -06:00
|
|
|
(use-package comment-dwim-2
|
|
|
|
:ensure t
|
|
|
|
:bind ("M-;" . comment-dwim-2))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
;; =============================================================================
|
|
|
|
;; Non-Programming Stuff
|
|
|
|
;; =============================================================================
|
|
|
|
|
2014-12-04 23:37:56 -07:00
|
|
|
(use-package helm-spotify
|
|
|
|
:ensure t
|
|
|
|
:commands helm-spotify)
|
|
|
|
|
|
|
|
(use-package edit-server
|
|
|
|
:ensure t
|
|
|
|
:commands edit-server-start
|
2015-07-21 17:51:57 -06:00
|
|
|
:defer 1
|
2014-12-20 02:20:54 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-07-21 17:51:57 -06:00
|
|
|
(edit-server-start)
|
|
|
|
(setq edit-server-new-frame nil)))
|
2014-12-04 23:37:56 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package jabber
|
|
|
|
:ensure t
|
|
|
|
:commands jabber-connect
|
|
|
|
:config
|
|
|
|
(progn
|
2014-12-18 11:46:27 -07:00
|
|
|
(setq jabber-alert-presence-hooks nil)
|
2014-12-03 15:38:14 -07:00
|
|
|
(defun jabber-message-content-message (from buffer text)
|
|
|
|
(when (or jabber-message-alert-same-buffer
|
|
|
|
(not (memq (selected-window) (get-buffer-window-list buffer))))
|
|
|
|
(if (jabber-muc-sender-p from)
|
|
|
|
(format "%s: %s" (jabber-jid-resource from) text)
|
|
|
|
(format "%s: %s" (jabber-jid-displayname from) text))))
|
|
|
|
(setq jabber-alert-message-function 'jabber-message-content-message)))
|
|
|
|
|
2014-12-20 02:21:21 -07:00
|
|
|
(use-package htmlize :ensure t)
|
|
|
|
|
2015-02-26 20:54:33 -07:00
|
|
|
(use-package calfw :ensure t)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package org
|
2015-01-12 23:13:02 -07:00
|
|
|
:ensure org-plus-contrib
|
2014-12-03 15:38:14 -07:00
|
|
|
:commands (org-mode org org-mobile-push org-mobile-pull org-agenda)
|
|
|
|
:mode ("\\.org\\'" . org-mode)
|
|
|
|
:bind (("C-c a" . org-agenda)
|
|
|
|
("C-c c" . org-capture)
|
|
|
|
("C-c n t" . org-insert-todo-heading)
|
|
|
|
("C-c n s" . org-insert-todo-subheading)
|
|
|
|
("C-c n h" . org-insert-habit)
|
|
|
|
("C-c n m" . org-make-habit)
|
2014-12-17 18:18:58 -07:00
|
|
|
("C-c n l" . org-store-link)
|
|
|
|
("C-c n i" . org-insert-link)
|
2014-12-04 23:20:49 -07:00
|
|
|
("C-c C-t" . org-todo)
|
2014-12-10 01:39:41 -07:00
|
|
|
("C-c C-S-t" . org-todo-force-notes))
|
2014-12-03 15:38:14 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-08-02 13:02:09 -06:00
|
|
|
(setq org-global-properties
|
|
|
|
'(quote (("Effort_ALL" . "0:15 0:30 0:45 1:00 2:00 3:00 4:00 5:00 6:00 0:00")
|
|
|
|
("STYLE_ALL" . "habit"))))
|
|
|
|
(setq org-columns-default-format "%80ITEM(Task) %10Effort(Effort){:} %10CLOCKSUM")
|
2015-02-03 12:37:28 -07:00
|
|
|
(setq helm-org-headings-fontify t)
|
2015-03-25 20:37:55 -06:00
|
|
|
|
2015-08-16 17:10:29 -06:00
|
|
|
(when nil
|
|
|
|
;; Enable appointment notifications.
|
|
|
|
(defadvice org-agenda-to-appt (before wickedcool activate)
|
|
|
|
"Clear the appt-time-msg-list."
|
|
|
|
(setq appt-time-msg-list nil))
|
2015-08-03 11:34:16 -06:00
|
|
|
(appt-activate)
|
|
|
|
(defun org-agenda-to-appt-no-message ()
|
|
|
|
(suppress-messages (org-agenda-to-appt)))
|
|
|
|
(run-at-time "00:00" 60 'org-agenda-to-appt-no-message))
|
2015-01-30 16:37:16 -07:00
|
|
|
|
2015-01-12 13:28:16 -07:00
|
|
|
(defun org-archive-if (condition-function)
|
|
|
|
(if (funcall condition-function)
|
2015-08-16 17:10:50 -06:00
|
|
|
(let ((next-point-marker
|
|
|
|
(save-excursion (org-forward-heading-same-level 1) (point-marker))))
|
|
|
|
(org-archive-subtree)
|
|
|
|
(setq org-map-continue-from (marker-position next-point-marker)))))
|
2015-01-12 13:28:16 -07:00
|
|
|
|
|
|
|
(defun org-archive-if-completed ()
|
|
|
|
(interactive)
|
|
|
|
(org-archive-if 'org-entry-is-done-p))
|
|
|
|
|
|
|
|
(defun org-archive-completed-in-buffer ()
|
|
|
|
(interactive)
|
|
|
|
(org-map-entries 'org-archive-if-completed))
|
|
|
|
|
2015-01-12 12:45:05 -07:00
|
|
|
(defun org-capture-make-todo-template (&optional content)
|
|
|
|
(unless content (setq content "%?"))
|
|
|
|
(with-temp-buffer
|
|
|
|
(org-mode)
|
|
|
|
(org-insert-heading)
|
|
|
|
(insert content)
|
|
|
|
(org-todo "TODO")
|
|
|
|
(org-set-property "CREATED"
|
|
|
|
(with-temp-buffer
|
2015-01-12 16:47:00 -07:00
|
|
|
(org-insert-time-stamp
|
2015-01-12 18:53:10 -07:00
|
|
|
(org-current-effective-time) t t)))
|
2015-01-12 12:45:05 -07:00
|
|
|
(remove-hook 'post-command-hook 'org-add-log-note)
|
|
|
|
(org-add-log-note)
|
|
|
|
(buffer-substring-no-properties (point-min) (point-max))))
|
|
|
|
|
|
|
|
(defun org-todo-force-notes ()
|
|
|
|
(interactive)
|
|
|
|
(let ((org-todo-log-states
|
|
|
|
(mapcar (lambda (state)
|
|
|
|
(list state 'note 'time))
|
|
|
|
(apply 'append org-todo-sets))))
|
|
|
|
(cond ((eq major-mode 'org-mode) (org-todo))
|
|
|
|
((eq major-mode 'org-agenda-mode) (org-agenda-todo)))))
|
|
|
|
|
|
|
|
(defun org-make-habit ()
|
|
|
|
(interactive)
|
|
|
|
(org-set-property "STYLE" "habit"))
|
|
|
|
|
|
|
|
(defun org-insert-habit ()
|
|
|
|
(interactive)
|
|
|
|
(org-insert-todo-heading nil)
|
|
|
|
(org-make-habit))
|
|
|
|
|
|
|
|
(defun org-todo-at-date (date)
|
|
|
|
(interactive (list (org-time-string-to-time (org-read-date))))
|
|
|
|
(flet ((org-current-effective-time (&rest r) date)
|
|
|
|
(org-today (&rest r) (time-to-days date)))
|
|
|
|
(cond ((eq major-mode 'org-mode) (org-todo))
|
|
|
|
((eq major-mode 'org-agenda-mode) (org-agenda-todo)))))
|
|
|
|
|
|
|
|
(defun org-capture-make-linked-todo-template ()
|
|
|
|
(org-capture-make-todo-template "%? %A"))
|
|
|
|
|
2015-01-18 15:40:55 -07:00
|
|
|
(defun org-cmp-creation-times (a b)
|
|
|
|
(let ((a-created (get-date-created-from-agenda-entry a))
|
|
|
|
(b-created (get-date-created-from-agenda-entry b)))
|
2015-08-16 02:51:48 -06:00
|
|
|
(imalison:compare-int-list a-created b-created)))
|
2015-01-18 15:40:55 -07:00
|
|
|
|
2015-01-12 18:53:40 -07:00
|
|
|
(defun org-agenda-done (&optional arg)
|
|
|
|
"Mark current TODO as done.
|
|
|
|
This changes the line at point, all other lines in the agenda referring to
|
|
|
|
the same tree node, and the headline of the tree node in the Org-mode file."
|
|
|
|
(interactive "P")
|
|
|
|
(org-agenda-todo "DONE"))
|
|
|
|
;; Override the key definition for org-exit
|
|
|
|
;; (define-key org-agenda-mode-map "x" #'org-agenda-done) ;; TODO why does this cause an error
|
|
|
|
|
2014-12-10 01:39:41 -07:00
|
|
|
;; org-mode add-ons
|
2014-12-08 23:48:19 -07:00
|
|
|
(use-package org-present :ensure t)
|
2015-01-17 17:34:45 -07:00
|
|
|
(use-package org-pomodoro :ensure t)
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-10 01:39:41 -07:00
|
|
|
;; variable configuration
|
2014-12-10 09:16:21 -07:00
|
|
|
(add-to-list 'org-modules 'org-habit)
|
2015-01-12 15:09:18 -07:00
|
|
|
(add-to-list 'org-modules 'org-expiry)
|
2015-02-03 17:04:29 -07:00
|
|
|
(add-to-list 'org-modules 'org-notify)
|
2015-02-07 18:34:48 -07:00
|
|
|
|
2014-12-10 01:39:41 -07:00
|
|
|
(setq org-src-fontify-natively t)
|
2014-12-04 23:37:56 -07:00
|
|
|
(setq org-habit-graph-column 50)
|
2014-12-05 16:05:18 -07:00
|
|
|
(setq org-habit-show-habits-only-for-today t)
|
2015-08-02 13:01:29 -06:00
|
|
|
;; My priority system:
|
|
|
|
|
|
|
|
;; A - Absolutely MUST, at all costs, be completed by the provided
|
2015-08-16 15:54:02 -06:00
|
|
|
;; due date. TODO: implement some type of extreme nagging
|
2015-08-02 13:01:29 -06:00
|
|
|
;; system that alerts in an intrusive way for overdue A
|
|
|
|
;; priority tasks.
|
|
|
|
|
|
|
|
;; B - Should be given immediate attention if the due date is any
|
|
|
|
;; time in the next two days. Failure to meet due date would
|
2015-08-16 15:54:02 -06:00
|
|
|
;; be bad but not catastrophic.
|
2015-08-02 13:01:29 -06:00
|
|
|
|
|
|
|
;; C - The highest priority to which tasks for which failure to
|
|
|
|
;; complete on time would not have considerable significant
|
|
|
|
;; consequences. There is still significant reason to prefer
|
|
|
|
;; the completion of these tasks sooner rather than later.
|
|
|
|
|
|
|
|
;; D - Failure to complete within a few days (or ever) of any
|
|
|
|
;; deadline would be completely okay. As such, any deadline
|
2015-08-16 15:54:02 -06:00
|
|
|
;; present on such a task is necessarily self imposed. Still
|
|
|
|
;; probably worth doing
|
2015-08-02 13:01:29 -06:00
|
|
|
|
|
|
|
;; E - Potentially not even worth doing at all, but worth taking a
|
|
|
|
;; note about in case it comes up again, or becomes more
|
|
|
|
;; interesting later.
|
|
|
|
|
|
|
|
;; F - Almost certainly not worth attempting in the immediate future.
|
|
|
|
;; Just brain dump.
|
|
|
|
|
|
|
|
;; Priorities are somewhat contextual within each category. Things
|
|
|
|
;; in the gtd or work categories are generally regarded as much
|
|
|
|
;; more important than things with the same priority from the
|
2015-08-16 15:54:02 -06:00
|
|
|
;; dotfiles category.
|
2015-08-02 13:01:29 -06:00
|
|
|
|
2015-08-16 15:54:02 -06:00
|
|
|
;; Items without deadlines or scheduled times of a given priority
|
|
|
|
;; can be regarded as less important than items that DO have
|
|
|
|
;; deadlines of that same priority.
|
2015-08-02 13:01:29 -06:00
|
|
|
|
2014-12-10 01:39:41 -07:00
|
|
|
(setq org-lowest-priority 69) ;; The character E
|
|
|
|
(setq org-completion-use-ido t)
|
|
|
|
(setq org-enforce-todo-dependencies t)
|
2015-02-12 01:23:27 -07:00
|
|
|
(setq org-deadline-warning-days 0)
|
2015-01-15 22:38:06 -07:00
|
|
|
(setq org-default-priority ?D)
|
2015-01-12 18:54:36 -07:00
|
|
|
(setq org-agenda-skip-scheduled-if-done t)
|
|
|
|
(setq org-agenda-skip-deadline-if-done t)
|
2015-01-12 16:47:00 -07:00
|
|
|
;;(add-to-list org-agenda-tag-filter-preset "+PRIORITY<\"C\"")
|
2014-12-10 01:39:41 -07:00
|
|
|
|
2015-02-03 17:04:29 -07:00
|
|
|
(use-package org-notify
|
2015-02-09 02:10:49 -07:00
|
|
|
:disabled t
|
2015-02-03 17:04:29 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-02-09 02:10:49 -07:00
|
|
|
(defun imalison:org-notify-notification-handler (plist)
|
|
|
|
(sauron-add-event 'org-notify 4 (format "%s, %s.\n" (plist-get plist :heading)
|
|
|
|
(org-notify-body-text plist))))
|
|
|
|
|
|
|
|
(setq org-show-notification-handler 'imalison:org-notify-notification-handler)
|
|
|
|
|
|
|
|
(org-notify-add 'default '(:time "1h" :actions imalison:org-notify-notification-handler
|
|
|
|
:period "2m" :duration 60))
|
|
|
|
(org-notify-add 'default '(:time "100m" :actions imalison:org-notify-notification-handler
|
2015-02-03 17:04:29 -07:00
|
|
|
:period "2m" :duration 60))
|
|
|
|
(org-notify-add 'urgent-second '(:time "3m" :actions (-notify/window -ding)
|
|
|
|
:period "15s" :duration 10))
|
|
|
|
(org-notify-add 'minute '(:time "5m" :actions -notify/window
|
|
|
|
:period "100s" :duration 70))
|
|
|
|
(org-notify-add '12hours
|
|
|
|
'(:time "3m" :actions (-notify/window -ding)
|
|
|
|
:period "15s" :duration 10)
|
|
|
|
'(:time "100m" :actions -notify/window
|
|
|
|
:period "2m" :duration 60)
|
|
|
|
'(:time "12h" :actions -notify/window :audible nil
|
|
|
|
:period "10m" :duration 200))
|
|
|
|
(org-notify-add '5days
|
|
|
|
'(:time "100m" :actions -notify/window
|
|
|
|
:period "2m" :duration 60)
|
|
|
|
'(:time "2d" :actions -notify/window
|
|
|
|
:period "15m" :duration 100)
|
|
|
|
'(:time "5d" :actions -notify/window
|
|
|
|
:period "2h" :duration 200))
|
|
|
|
(org-notify-add 'long-20days
|
|
|
|
'(:time "2d" :actions -notify/window
|
|
|
|
:period "15m" :duration 60)
|
|
|
|
'(:time "5d" :actions -notify/window
|
|
|
|
:period "2h" :duration 60)
|
|
|
|
'(:time "20d" :actions -email :period "2d" :audible nil))
|
|
|
|
(org-notify-add 'long-50days
|
|
|
|
'(:time "4d" :actions -notify/window
|
|
|
|
:period "30m" :duration 100)
|
|
|
|
'(:time "10d" :actions -notify/window
|
|
|
|
:period "4h" :duration 200)
|
|
|
|
'(:time "50d" :actions -email :period "3d" :audible nil))
|
|
|
|
(org-notify-add 'long-100days
|
|
|
|
'(:time "2d" :actions -notify/window
|
|
|
|
:period "1h" :duration 200)
|
|
|
|
'(:time "10d" :actions -notify/window
|
|
|
|
:period "10h" :duration 300)
|
|
|
|
'(:time "50d" :actions -email :period "3d" :audible nil)
|
|
|
|
'(:time "100d" :actions -email :period "5d" :audible nil))
|
|
|
|
(org-notify-start 10)))
|
|
|
|
|
2015-04-08 15:55:22 -06:00
|
|
|
(use-package org-bullets
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))))
|
|
|
|
|
2015-02-07 18:34:48 -07:00
|
|
|
(use-package org-ehtml
|
2015-02-09 03:04:42 -07:00
|
|
|
:disabled t
|
2015-02-07 18:34:48 -07:00
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(setq org-ehtml-docroot (expand-file-name "~/Dropbox/org"))
|
|
|
|
(setq org-ehtml-allow-agenda t)
|
|
|
|
(setq org-ehtml-editable-headlines t)
|
|
|
|
(setq org-ehtml-everything-editable t)))
|
|
|
|
|
2014-12-10 01:39:41 -07:00
|
|
|
;; Agenda setup.
|
2015-07-03 18:11:23 -06:00
|
|
|
(defvar-if-non-existent imalison:org-gtd-file "~/org/gtd.org")
|
|
|
|
(defvar-if-non-existent imalison:org-habits-file "~/org/habits.org")
|
|
|
|
(defvar-if-non-existent imalison:org-calendar-file "~/org/calendar.org")
|
2014-12-15 17:50:03 -07:00
|
|
|
|
|
|
|
(unless (boundp 'org-capture-templates)
|
|
|
|
(defvar org-capture-templates nil))
|
2015-06-25 01:26:57 -06:00
|
|
|
|
|
|
|
(defun imalison:add-to-org-agenda-files (incoming-files)
|
|
|
|
(setq org-agenda-files (delete-dups
|
|
|
|
(cl-loop for filepath in (append org-agenda-files incoming-files)
|
2015-07-03 18:11:23 -06:00
|
|
|
when (and filepath (file-exists-p (file-truename filepath)))
|
2015-06-25 01:26:57 -06:00
|
|
|
collect (file-truename filepath)))))
|
|
|
|
|
2015-07-03 18:11:23 -06:00
|
|
|
(imalison:add-to-org-agenda-files
|
|
|
|
(list imalison:org-gtd-file imalison:org-habits-file imalison:org-calendar-file))
|
2014-12-15 17:50:03 -07:00
|
|
|
|
2015-01-06 18:27:59 -07:00
|
|
|
(add-to-list 'org-capture-templates
|
2015-07-03 18:11:23 -06:00
|
|
|
`("t" "GTD Todo (Linked)" entry (file ,imalison:org-gtd-file)
|
2015-01-12 12:45:05 -07:00
|
|
|
(function org-capture-make-linked-todo-template)))
|
2014-12-18 10:29:50 -07:00
|
|
|
|
|
|
|
(add-to-list 'org-capture-templates
|
2015-07-03 18:11:23 -06:00
|
|
|
`("g" "GTD Todo" entry (file ,imalison:org-gtd-file)
|
2015-04-08 16:10:44 -06:00
|
|
|
(function org-capture-make-todo-template)))
|
|
|
|
|
|
|
|
(add-to-list 'org-capture-templates
|
|
|
|
`("y" "Calendar entry (Linked)" entry
|
2015-07-03 18:11:23 -06:00
|
|
|
(file ,imalison:org-calendar-file)
|
2015-04-08 16:10:44 -06:00
|
|
|
"* %? %A
|
2015-01-12 12:45:05 -07:00
|
|
|
:PROPERTIES:
|
2015-01-26 01:41:59 -07:00
|
|
|
:CREATED: %U
|
2015-02-05 15:11:42 -07:00
|
|
|
:END:
|
|
|
|
%^T"))
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2015-01-06 18:27:59 -07:00
|
|
|
(add-to-list 'org-capture-templates
|
2015-04-08 16:10:44 -06:00
|
|
|
`("c" "Calendar entry" entry
|
2015-07-03 18:11:23 -06:00
|
|
|
(file ,imalison:org-calendar-file)
|
2015-04-08 16:10:44 -06:00
|
|
|
"* %?
|
2015-01-28 13:44:52 -07:00
|
|
|
:PROPERTIES:
|
|
|
|
:CREATED: %U
|
2015-02-05 15:11:42 -07:00
|
|
|
:END:
|
|
|
|
%^T"))
|
2015-01-06 18:27:59 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(add-to-list 'org-capture-templates
|
2015-07-03 18:11:23 -06:00
|
|
|
`("h" "Habit" entry (file ,imalison:org-habits-file)
|
2015-01-03 12:30:00 -07:00
|
|
|
"* TODO
|
2015-01-26 01:41:59 -07:00
|
|
|
SCHEDULED: %^t
|
2014-12-03 15:38:14 -07:00
|
|
|
:PROPERTIES:
|
2015-01-26 01:41:59 -07:00
|
|
|
:CREATED: %U
|
2015-01-12 12:45:05 -07:00
|
|
|
:STYLE: habit
|
2014-12-03 15:38:14 -07:00
|
|
|
:END:"))
|
|
|
|
|
|
|
|
(let ((this-week-high-priority
|
2015-01-12 16:47:00 -07:00
|
|
|
;; The < in the following line works has behavior that is opposite
|
|
|
|
;; to what one might expect.
|
|
|
|
'(tags-todo "+PRIORITY<\"C\"+DEADLINE<\"<+1w>\"DEADLINE>\"<+0d>\""
|
2014-12-03 15:38:14 -07:00
|
|
|
((org-agenda-overriding-header
|
|
|
|
"Upcoming high priority tasks:"))))
|
|
|
|
(due-today '(tags-todo
|
|
|
|
"+DEADLINE=<\"<+0d>\""
|
|
|
|
((org-agenda-overriding-header
|
|
|
|
"Due today:"))))
|
2015-01-12 15:09:18 -07:00
|
|
|
(recently-created '(tags-todo
|
|
|
|
"+CREATED=>\"<-3d>\""
|
2015-01-18 15:40:55 -07:00
|
|
|
((org-agenda-overriding-header "Recently created:")
|
|
|
|
(org-agenda-cmp-user-defined 'org-cmp-creation-times)
|
|
|
|
(org-agenda-sorting-strategy '(user-defined-down)))))
|
2015-08-16 04:25:24 -06:00
|
|
|
(next '(todo "NEXT"))
|
2014-12-03 15:38:14 -07:00
|
|
|
(missing-deadline
|
|
|
|
'(tags-todo "-DEADLINE={.}/!"
|
|
|
|
((org-agenda-overriding-header
|
|
|
|
"These don't have deadlines:"))))
|
|
|
|
(missing-priority
|
|
|
|
'(tags-todo "-PRIORITY={.}/!"
|
|
|
|
((org-agenda-overriding-header
|
|
|
|
"These don't have priorities:")))))
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq org-agenda-custom-commands
|
|
|
|
`(("M" "Main agenda view"
|
2015-08-16 04:25:24 -06:00
|
|
|
((agenda ""
|
2014-12-03 15:38:14 -07:00
|
|
|
((org-agenda-overriding-header "Agenda:")
|
|
|
|
(org-agenda-ndays 5)
|
2015-08-16 04:25:24 -06:00
|
|
|
(org-deadline-warning-days 0)))
|
|
|
|
,due-today
|
|
|
|
,next
|
|
|
|
,this-week-high-priority
|
|
|
|
,recently-created)
|
2014-12-03 15:38:14 -07:00
|
|
|
nil nil)
|
|
|
|
,(cons "A" (cons "High priority upcoming" this-week-high-priority))
|
2015-01-12 15:09:18 -07:00
|
|
|
,(cons "d" (cons "Overdue tasks and due today" due-today))
|
2015-01-12 16:47:00 -07:00
|
|
|
,(cons "r" (cons "Recently created" recently-created))
|
2015-01-12 18:54:12 -07:00
|
|
|
("h" "A, B priority:" tags-todo "+PRIORITY<\"C\""
|
2015-01-12 20:56:30 -07:00
|
|
|
((org-agenda-overriding-header
|
|
|
|
"High Priority:")))
|
|
|
|
("c" "At least priority C:" tags-todo "+PRIORITY<\"D\""
|
2015-01-12 16:47:00 -07:00
|
|
|
((org-agenda-overriding-header
|
2015-08-04 04:46:43 -06:00
|
|
|
"At least priority C:"))))))
|
2015-01-12 16:47:00 -07:00
|
|
|
|
2015-08-16 16:25:52 -06:00
|
|
|
;; What follows is a description of the significance of each of
|
|
|
|
;; the values available in `org-todo-keywords'. All headings with
|
|
|
|
;; one of these keywords deal with the concept of the completion
|
|
|
|
;; of some task or collection of tasks to bring about a particular
|
|
|
|
;; state of affairs. In some cases, the actual tasks involved may
|
|
|
|
;; not be known at the time of task creation.
|
|
|
|
|
|
|
|
;; Uncompleted States:
|
|
|
|
|
|
|
|
;; IDEA - This TODO exists in only the most abstract sense: it is
|
|
|
|
;; an imagined state of affairs that requires tasks that are
|
|
|
|
;; either not yet known, or have not thoroughly been considered.
|
|
|
|
|
|
|
|
;; RESEARCH - This TODO needs to be investigated further before
|
|
|
|
;; action can be taken to achieve the desired outcome. It is not
|
|
|
|
;; known how much time and effort will be consumed in the actual
|
|
|
|
;; completion of the task.
|
|
|
|
|
|
|
|
;; TODO - The scope and work involved in this TODO are well
|
|
|
|
;; understood, but for some reason or another, it is not something
|
|
|
|
;; that should be attempted in the immediate future. Typically
|
|
|
|
;; this is because the task is not considered a top priority, but
|
|
|
|
;; it may also be for some other reason.
|
|
|
|
|
|
|
|
;; NEXT - This TODO is immediately actionable and should be
|
|
|
|
;; started in the immediate future.
|
|
|
|
|
|
|
|
;; STARTED - Work on this TODO has already started, further work
|
|
|
|
;; is immediately actionable.
|
|
|
|
|
|
|
|
;; WAIT - The work involved in this TODO is well understood, but
|
|
|
|
;; it is blocked for the time being.
|
|
|
|
|
2015-08-16 17:55:04 -06:00
|
|
|
;; BACKLOG - While technically actionable, this task is not only
|
|
|
|
;; in the immediate future, but the foreseable future. It exists
|
|
|
|
;; as a task mostly as a note/reminder in case it becomes higher
|
|
|
|
;; priority in the future.
|
|
|
|
|
2015-08-16 16:25:52 -06:00
|
|
|
;; Completed States:
|
|
|
|
|
|
|
|
;; DONE - This TODO has been completed exactly as imagined.
|
|
|
|
|
|
|
|
;; HANDLED - This TODO was completed in spirit, though not by the
|
|
|
|
;; means that were originally imagined/outlined in the TODO.
|
|
|
|
|
|
|
|
;; EXPIRED - The owner of this TODO failed to take action on it
|
|
|
|
;; within the appropriate time period, and there is now no point in
|
|
|
|
;; attempting it.
|
|
|
|
|
|
|
|
;; CANCELED - For whatever reason, this TODO should no longer be
|
|
|
|
;; attempted. This TODO is typically used in contrast to the
|
|
|
|
;; EXPIRED TODO to indicate that the owner is not necessarily to
|
|
|
|
;; blame.
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq org-todo-keywords
|
2015-08-16 17:55:04 -06:00
|
|
|
'((sequence "IDEA(i!)" "RESEARCH(r!)" "TODO(t!)" "NEXT(n!)" "STARTED(s!)" "WAIT(w!)" "BACKLOG(b!)" "|"
|
2015-08-16 16:25:52 -06:00
|
|
|
"DONE(d!)" "HANDLED(h!)" "EXPIRED(e!)" "CANCELED(c!)")))
|
2015-08-16 15:54:25 -06:00
|
|
|
|
|
|
|
;; Record changes to todo states
|
|
|
|
(setq org-log-into-drawer t)
|
2014-12-03 15:38:14 -07:00
|
|
|
;; Stop starting agenda from deleting frame setup!
|
|
|
|
(setq org-agenda-window-setup 'other-window)
|
|
|
|
(define-key mode-specific-map [?a] 'org-agenda)
|
|
|
|
(unbind-key "C-j" org-mode-map))
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(setq org-directory "~/Dropbox/org")
|
|
|
|
(setq org-mobile-inbox-for-pull "~/Dropbox/org/flagged.org")
|
|
|
|
(setq org-mobile-directory "~/Dropbox/Apps/MobileOrg")
|
2015-08-16 00:19:53 -06:00
|
|
|
(add-hook 'org-mode-hook 'imalison:disable-linum-mode)
|
2015-02-09 03:04:42 -07:00
|
|
|
(add-hook 'org-mode-hook (lambda () (setq org-todo-key-trigger t)))
|
2015-08-16 02:11:29 -06:00
|
|
|
(add-hook 'org-agenda-mode-hook 'imalison:disable-linum-mode)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-08-02 16:33:44 -06:00
|
|
|
(use-package clocker :ensure t)
|
|
|
|
|
2015-06-15 15:59:54 -06:00
|
|
|
(use-package org-projectile
|
2015-07-01 10:06:07 -06:00
|
|
|
:ensure t
|
|
|
|
:demand t
|
|
|
|
:bind (("C-c n p" . imalison:helm-org-todo))
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(org-projectile:prompt)
|
|
|
|
(add-to-list 'org-capture-templates
|
|
|
|
(org-projectile:project-todo-entry "l" "* TODO %? %a\n" "Linked Project TODO"))
|
|
|
|
(add-to-list 'org-capture-templates (org-projectile:project-todo-entry "p"))
|
|
|
|
(setq org-confirm-elisp-link-function nil)
|
|
|
|
(imalison:add-to-org-agenda-files (org-projectile:todo-files))
|
|
|
|
(defun imalison:helm-org-todo (&optional arg)
|
|
|
|
(interactive "P")
|
|
|
|
(helm :sources (list (helm-source-org-capture-templates)
|
|
|
|
(org-projectile:helm-source
|
|
|
|
(if arg (org-capture-make-linked-todo-template)
|
|
|
|
(org-capture-make-todo-template))))
|
2015-06-15 15:59:54 -06:00
|
|
|
:candidate-number-limit 99999
|
|
|
|
:buffer "*helm org capture templates*"))))
|
|
|
|
|
2015-08-17 03:03:30 -06:00
|
|
|
(use-package deft
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(setq deft-extensions '("org"))
|
2015-08-17 03:45:53 -06:00
|
|
|
(setq deft-directory "~/Dropbox (Personal)/org/notes")))
|
2015-08-17 03:03:30 -06:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package epg
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(epa-file-enable))
|
|
|
|
|
|
|
|
(use-package twittering-mode
|
|
|
|
:ensure t
|
|
|
|
:commands twittering-mode)
|
|
|
|
|
|
|
|
(use-package erc
|
|
|
|
:ensure t
|
|
|
|
:commands erc
|
|
|
|
:config
|
|
|
|
(progn
|
2015-01-03 10:57:11 -07:00
|
|
|
;; (add-to-list 'erc-modules 'notifications)
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package erc-colorize :ensure t) (erc-colorize-mode 1)))
|
|
|
|
|
2014-12-09 02:47:39 -07:00
|
|
|
(use-package s :ensure t)
|
|
|
|
(add-to-list 'load-path (s-trim (shell-command-to-string "mu4e_directory")))
|
|
|
|
|
|
|
|
(use-package mu4e
|
2015-01-13 23:45:49 -07:00
|
|
|
:commands (mu4e mu4e-view-message-with-msgid mu4e-update-index email)
|
|
|
|
:bind ("C-c 0" . email)
|
2014-12-09 02:47:39 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-02-03 12:37:42 -07:00
|
|
|
(defun email (&optional arg)
|
|
|
|
(interactive "P")
|
2015-02-03 16:28:53 -07:00
|
|
|
(if (string-equal (persp-name persp-curr) "email")
|
|
|
|
(progn (delete-other-windows) (mu4e))
|
|
|
|
(progn
|
|
|
|
(persp-switch "email")
|
|
|
|
(when (or (not (mu4e-running-p)) arg)
|
|
|
|
(delete-other-windows) (mu4e)))))
|
2014-12-11 16:30:18 -07:00
|
|
|
;; enable inline images
|
|
|
|
(setq mu4e-view-show-images t)
|
|
|
|
;; show images
|
|
|
|
(setq mu4e-show-images t)
|
2014-12-15 18:23:00 -07:00
|
|
|
;; Try to display html as text
|
2014-12-22 11:09:03 -07:00
|
|
|
(setq mu4e-view-prefer-html nil)
|
|
|
|
|
|
|
|
(setq mu4e-html2text-command "html2text -width 80 -nobs -utf8")
|
2014-12-11 16:30:18 -07:00
|
|
|
|
|
|
|
;; use imagemagick, if available
|
|
|
|
(when (fboundp 'imagemagick-register-types)
|
|
|
|
(imagemagick-register-types))
|
|
|
|
(setq mail-user-agent 'mu4e-user-agent)
|
2014-12-10 01:39:41 -07:00
|
|
|
(require 'org-mu4e)
|
2014-12-09 02:47:39 -07:00
|
|
|
(setq mu4e-compose-complete-only-after nil)
|
|
|
|
(setq mu4e-maildir "~/Mail")
|
|
|
|
|
2014-12-18 10:29:50 -07:00
|
|
|
(setq mu4e-drafts-folder "/[Gmail].Drafts")
|
|
|
|
(setq mu4e-sent-folder "/[Gmail].Sent Mail")
|
|
|
|
(setq mu4e-trash-folder "/[Gmail].Trash")
|
|
|
|
|
2014-12-17 18:18:58 -07:00
|
|
|
(setq mu4e-sent-messages-behavior 'delete)
|
2015-01-28 18:00:04 -07:00
|
|
|
(setq mu4e-headers-skip-duplicates t)
|
2014-12-11 16:30:18 -07:00
|
|
|
(setq mu4e-update-interval (* 60 20))
|
|
|
|
(setq message-kill-buffer-on-exit t)
|
2015-01-03 13:03:41 -07:00
|
|
|
(setq mail-user-agent 'mu4e-user-agent) ;; make mu4e the default mail client
|
2014-12-09 02:47:39 -07:00
|
|
|
|
|
|
|
;; don't save message to Sent Messages, Gmail/IMAP takes care of this
|
|
|
|
(setq mu4e-sent-messages-behavior 'delete)
|
|
|
|
|
|
|
|
;; allow for updating mail using 'U' in the main view:
|
2015-01-02 12:53:01 -07:00
|
|
|
(setq mu4e-get-mail-command "timeout 60 offlineimap")
|
2014-12-11 16:30:18 -07:00
|
|
|
|
2014-12-09 02:47:39 -07:00
|
|
|
(add-hook 'mu4e-compose-mode-hook
|
|
|
|
(defun my-do-compose-stuff () (flyspell-mode)))
|
|
|
|
|
2014-12-24 02:19:14 -07:00
|
|
|
(add-to-list 'mu4e-headers-actions '("view in browser" . mu4e-action-view-in-browser))
|
|
|
|
(add-to-list 'mu4e-view-actions '("view in browser" . mu4e-action-view-in-browser))
|
|
|
|
|
2014-12-20 02:22:26 -07:00
|
|
|
(defun mu4e-view (msg headersbuf)
|
|
|
|
"Display the message MSG in a new buffer, and keep in sync with HDRSBUF.
|
|
|
|
'In sync' here means that moving to the next/previous message in
|
|
|
|
the the message view affects HDRSBUF, as does marking etc.
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-20 02:22:26 -07:00
|
|
|
As a side-effect, a message that is being viewed loses its 'unread'
|
|
|
|
marking if it still had that."
|
|
|
|
(let* ((embedded ;; is it as an embedded msg (ie. message/rfc822 att)?
|
|
|
|
(when (gethash (mu4e-message-field msg :path)
|
|
|
|
mu4e~path-parent-docid-map) t))
|
|
|
|
(buf
|
|
|
|
(if embedded
|
|
|
|
(mu4e~view-embedded-winbuf)
|
|
|
|
(get-buffer-create mu4e~view-buffer-name))))
|
|
|
|
;; note: mu4e~view-mark-as-read will pseudo-recursively call mu4e-view again
|
|
|
|
;; by triggering mu4e~view again as it marks the message as read
|
|
|
|
(with-current-buffer buf
|
|
|
|
(switch-to-buffer buf)
|
|
|
|
(setq mu4e~view-msg msg)
|
2015-01-02 12:53:01 -07:00
|
|
|
(when (or (mu4e~view-mark-as-read msg) t) ;;(or embedded (not (mu4e~view-mark-as-read msg)))
|
2014-12-20 02:22:26 -07:00
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
(erase-buffer)
|
|
|
|
(mu4e~delete-all-overlays)
|
|
|
|
(insert (mu4e-view-message-text msg))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(mu4e~fontify-cited)
|
|
|
|
(mu4e~fontify-signature)
|
2015-01-02 13:24:19 -07:00
|
|
|
(mu4e~view-make-urls-clickable)
|
2014-12-20 02:22:26 -07:00
|
|
|
(mu4e~view-show-images-maybe msg)
|
|
|
|
(setq
|
|
|
|
mu4e~view-buffer buf
|
|
|
|
mu4e~view-headers-buffer headersbuf)
|
|
|
|
(when embedded (local-set-key "q" 'kill-buffer-and-window))
|
|
|
|
(mu4e-view-mode))))))
|
|
|
|
|
2014-12-09 02:47:39 -07:00
|
|
|
(require 'smtpmail)
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-09 02:47:39 -07:00
|
|
|
;; alternatively, for emacs-24 you can use:
|
|
|
|
(setq message-send-mail-function 'smtpmail-send-it
|
|
|
|
smtpmail-stream-type 'starttls
|
|
|
|
smtpmail-default-smtp-server "smtp.gmail.com"
|
|
|
|
smtpmail-smtp-server "smtp.gmail.com"
|
2014-12-11 16:30:18 -07:00
|
|
|
smtpmail-smtp-service 587)))
|
2014-12-09 02:47:39 -07:00
|
|
|
|
2014-12-19 16:23:42 -07:00
|
|
|
(use-package gmail-message-mode :ensure t)
|
|
|
|
|
2014-12-18 10:29:50 -07:00
|
|
|
(use-package alert
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(defun alert-notifier-notify (info)
|
|
|
|
(if alert-notifier-command
|
|
|
|
(let ((args
|
|
|
|
(list "-title" (alert-encode-string (plist-get info :title))
|
2014-12-19 05:08:29 -07:00
|
|
|
"-activate" "org.gnu.Emacs"
|
2014-12-18 10:29:50 -07:00
|
|
|
"-message" (alert-encode-string (plist-get info :message))
|
2014-12-19 05:08:29 -07:00
|
|
|
"-execute" (format "\"%s\"" (switch-to-buffer-command (plist-get info :buffer))))))
|
2014-12-18 10:29:50 -07:00
|
|
|
(apply #'call-process alert-notifier-command nil nil nil args))
|
|
|
|
(alert-message-notify info)))
|
|
|
|
|
|
|
|
(defun switch-to-buffer-command (buffer-name)
|
|
|
|
(emacsclient-command (format "(switch-to-buffer \\\"%s\\\")" buffer-name)))
|
|
|
|
|
|
|
|
(defun emacsclient-command (command)
|
2014-12-19 05:08:29 -07:00
|
|
|
(format "emacsclient --server-file='%s' -e '%s'" server-name command))
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-18 10:29:50 -07:00
|
|
|
(setq alert-default-style 'notifier)))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package sauron
|
|
|
|
:ensure t
|
2015-03-25 20:37:55 -06:00
|
|
|
:defer 5
|
2014-12-03 15:38:14 -07:00
|
|
|
:commands (sauron-start sauron-start-hidden)
|
2015-01-12 16:47:00 -07:00
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(when (eq system-type 'darwin)
|
|
|
|
(setq sauron-modules '(sauron-erc sauron-org sauron-notifications
|
|
|
|
sauron-twittering sauron-jabber sauron-identica))
|
|
|
|
(defun sauron-dbus-start ()
|
|
|
|
nil)
|
|
|
|
(makunbound 'dbus-path-emacs)))
|
2014-12-03 15:38:14 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-03-25 20:37:55 -06:00
|
|
|
(sauron-start-hidden)
|
2015-01-12 16:47:00 -07:00
|
|
|
;; This should really check (featurep 'dbus) but for some reason
|
|
|
|
;; this is always true even if support is not there.
|
2014-12-24 02:19:14 -07:00
|
|
|
(setq sauron-prio-sauron-started 2)
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq sauron-min-priority 3)
|
2015-01-03 10:57:11 -07:00
|
|
|
;; (setq sauron-dbus-cookie t) ;; linux only?
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq sauron-separate-frame nil)
|
|
|
|
(setq sauron-nick-insensitivity 1)
|
|
|
|
(defun sauron:jabber-notify (origin priority message &optional properties)
|
|
|
|
(funcall notify-function "gtalk" message))
|
|
|
|
(defun sauron:erc-notify (origin priority message &optional properties)
|
|
|
|
(let ((event (plist-get properties :event)))
|
2014-12-11 16:30:18 -07:00
|
|
|
(funcall notify-function "IRC" message)))
|
2014-12-03 15:38:14 -07:00
|
|
|
(defun sauron:mu4e-notify (origin priority message &optional properties)
|
|
|
|
nil)
|
2014-12-11 16:30:18 -07:00
|
|
|
(defun sauron:dbus-notify (origin priority message &optional properties)
|
|
|
|
(funcall notify-function "GMail" message))
|
2014-12-03 15:38:14 -07:00
|
|
|
(defun sauron:dispatch-notify (origin priority message &optional properties)
|
|
|
|
(let ((handler (cond ((string= origin "erc") 'sauron:erc-notify)
|
|
|
|
((string= origin "jabber") 'sauron:jabber-notify)
|
|
|
|
((string= origin "mu4e") 'sauron:mu4e-notify)
|
2014-12-11 16:30:18 -07:00
|
|
|
((string= origin "dbus") 'sauron:dbus-notify)
|
2014-12-03 15:38:14 -07:00
|
|
|
(t (lambda (&rest r) nil)))))
|
|
|
|
(funcall handler origin priority message properties)))
|
2014-12-18 10:29:50 -07:00
|
|
|
;; Prefering alert.el for now ;; (add-hook 'sauron-event-added-functions 'sauron:dispatch-notify)
|
2015-01-12 16:47:00 -07:00
|
|
|
(sauron-start-hidden)
|
2015-03-25 20:37:55 -06:00
|
|
|
(add-hook 'sauron-event-added-functions 'sauron-alert-el-adapter)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2014-12-14 00:44:27 -07:00
|
|
|
(use-package screenshot :ensure t)
|
|
|
|
|
2015-02-03 12:55:34 -07:00
|
|
|
(use-package libmpdee :ensure t)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package flyspell
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(diminish 'flyspell-mode)
|
|
|
|
(bind-key "M-s" 'flyspell-correct-word-before-point flyspell-mode-map)
|
|
|
|
(unbind-key "C-;" flyspell-mode-map)
|
|
|
|
(defun flyspell-emacs-popup-textual (event poss word)
|
|
|
|
"A textual flyspell popup menu."
|
|
|
|
(let* ((corrects (if flyspell-sort-corrections
|
|
|
|
(sort (car (cdr (cdr poss))) 'string<)
|
|
|
|
(car (cdr (cdr poss)))))
|
|
|
|
(cor-menu (if (consp corrects)
|
|
|
|
(mapcar (lambda (correct)
|
|
|
|
(list correct correct))
|
|
|
|
corrects)
|
|
|
|
'()))
|
|
|
|
(affix (car (cdr (cdr (cdr poss)))))
|
|
|
|
show-affix-info
|
|
|
|
(base-menu (let ((save (if (and (consp affix) show-affix-info)
|
|
|
|
(list
|
|
|
|
(list (concat "Save affix: "
|
|
|
|
(car affix))
|
|
|
|
'save)
|
|
|
|
'("Accept (session)" session)
|
|
|
|
'("Accept (buffer)" buffer))
|
|
|
|
'(("Save word" save)
|
|
|
|
("Accept (session)" session)
|
|
|
|
("Accept (buffer)" buffer)))))
|
|
|
|
(if (consp cor-menu)
|
|
|
|
(append cor-menu (cons "" save))
|
|
|
|
save)))
|
|
|
|
(menu (mapcar
|
|
|
|
(lambda (arg) (if (consp arg) (car arg) arg))
|
|
|
|
base-menu)))
|
|
|
|
(cadr (assoc (popup-menu* menu :scroll-bar t) base-menu))))
|
|
|
|
(fset 'flyspell-emacs-popup 'flyspell-emacs-popup-textual)))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Programming Mode Hooks
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(add-hook 'prog-mode-hook (lambda () (auto-fill-mode -1)))
|
2014-12-06 22:46:36 -07:00
|
|
|
(add-hook 'prog-mode-hook (lambda () (subword-mode t) (diminish 'subword-mode)))
|
2014-12-03 15:38:14 -07:00
|
|
|
(add-hook 'prog-mode-hook 'flyspell-prog-mode)
|
|
|
|
|
|
|
|
;; (add-hook 'prog-mode-hook (lambda () (highlight-lines-matching-regexp
|
|
|
|
;; ".\\{81\\}" 'hi-blue)))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; File Navigation: helm/projectile/ido
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-06-15 06:06:38 -06:00
|
|
|
(use-package helm-themes :ensure t)
|
|
|
|
|
2014-12-05 16:37:10 -07:00
|
|
|
(use-package helm-config
|
|
|
|
:ensure helm
|
2015-01-03 12:30:00 -07:00
|
|
|
:demand t
|
2014-12-03 15:38:14 -07:00
|
|
|
:bind (("M-y" . helm-show-kill-ring)
|
|
|
|
("M-x" . helm-M-x)
|
|
|
|
("C-x C-i" . helm-imenu)
|
2014-12-06 02:45:28 -07:00
|
|
|
("C-h a" . helm-apropos)
|
2014-12-08 17:32:57 -07:00
|
|
|
("C-c C-h" . helm-org-agenda-files-headings)
|
|
|
|
("C-c ;" . helm-recentf))
|
2014-12-03 15:38:14 -07:00
|
|
|
:init
|
|
|
|
(progn
|
2014-12-05 16:37:10 -07:00
|
|
|
(helm-mode 1)
|
2015-06-23 15:39:17 -06:00
|
|
|
(use-package helm-ag
|
|
|
|
:ensure t
|
|
|
|
:bind ("C-c p S" . imalison:set-helm-ag-extra-options)
|
|
|
|
:config
|
|
|
|
(defun imalison:set-helm-ag-extra-options ()
|
|
|
|
(interactive)
|
|
|
|
(let ((option (read-string "Extra options: " (or helm-ag--extra-options "")
|
|
|
|
'helm-ag--extra-options-history)))
|
|
|
|
(setq helm-ag--extra-options option)))))
|
2014-12-03 15:38:14 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-06-25 08:36:11 -06:00
|
|
|
(setq helm-split-window-default-side 'same)
|
2015-01-29 16:32:27 -07:00
|
|
|
(defun helm-source-org-capture-templates ()
|
|
|
|
(helm-build-sync-source "Org Capture Templates:"
|
|
|
|
:candidates (cl-loop for template in org-capture-templates
|
|
|
|
collect `(,(nth 1 template) . ,(nth 0 template)))
|
|
|
|
:action '(("Do capture" . (lambda (template-shortcut)
|
|
|
|
(org-capture nil template-shortcut))))))
|
|
|
|
(defun helm-org-capture-templates ()
|
|
|
|
(interactive)
|
|
|
|
(helm :sources (helm-source-org-capture-templates)
|
|
|
|
:candidate-number-limit 99999
|
|
|
|
:buffer "*helm org capture templates*"))
|
2014-12-12 21:52:19 -07:00
|
|
|
(cl-defun helm-org-headings-in-buffer ()
|
2014-12-12 21:38:40 -07:00
|
|
|
(interactive)
|
|
|
|
(helm :sources (helm-source-org-headings-for-files
|
|
|
|
(list (projectile-completing-read
|
|
|
|
"File to look at headings from: "
|
|
|
|
(projectile-all-project-files))))
|
|
|
|
:candidate-number-limit 99999
|
|
|
|
:buffer "*helm org inbuffer*"))
|
2014-12-10 01:39:41 -07:00
|
|
|
;; helm zsh source history
|
|
|
|
(defvar helm-c-source-zsh-history
|
|
|
|
'((name . "Zsh History")
|
|
|
|
(candidates . helm-c-zsh-history-set-candidates)
|
|
|
|
(action . (("Execute Command" . helm-c-zsh-history-action)))
|
|
|
|
(volatile)
|
|
|
|
(requires-pattern . 3)
|
|
|
|
(delayed)))
|
|
|
|
(defun helm-c-zsh-history-set-candidates (&optional request-prefix)
|
|
|
|
(let ((pattern (replace-regexp-in-string
|
|
|
|
" " ".*"
|
|
|
|
(or (and request-prefix
|
|
|
|
(concat request-prefix
|
|
|
|
" " helm-pattern))
|
|
|
|
helm-pattern))))
|
|
|
|
(with-current-buffer (find-file-noselect "~/.zsh_history" t t)
|
|
|
|
(auto-revert-mode -1)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(loop for pos = (re-search-backward pattern nil t)
|
|
|
|
while pos
|
|
|
|
collect (replace-regexp-in-string
|
|
|
|
"\\`:.+?;" ""
|
|
|
|
(buffer-substring (line-beginning-position)
|
|
|
|
(line-end-position)))))))
|
|
|
|
|
|
|
|
(defun helm-c-zsh-history-action (candidate)
|
|
|
|
(async-shell-command candidate))
|
|
|
|
|
|
|
|
(defun helm-command-from-zsh ()
|
|
|
|
(interactive)
|
|
|
|
(require 'helm)
|
|
|
|
(helm-other-buffer 'helm-c-source-zsh-history "*helm zsh history*"))
|
|
|
|
|
|
|
|
(use-package helm-descbinds
|
|
|
|
:demand t
|
2014-12-11 16:30:18 -07:00
|
|
|
:config (helm-descbinds-mode 1)
|
2014-12-10 01:39:41 -07:00
|
|
|
:ensure t)
|
2014-12-03 15:38:14 -07:00
|
|
|
(helm-mode 1)
|
|
|
|
(diminish 'helm-mode)))
|
|
|
|
|
2014-12-14 00:44:27 -07:00
|
|
|
(use-package helm-swoop
|
|
|
|
:ensure t
|
|
|
|
:bind ("C-S-s" . helm-swoop)
|
|
|
|
:commands helm-swoop)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2014-12-10 09:16:21 -07:00
|
|
|
(use-package perspective
|
|
|
|
:ensure t
|
2014-12-24 02:18:45 -07:00
|
|
|
:demand t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(persp-mode)
|
|
|
|
(defun persp-get-perspectives-for-buffer (buffer)
|
|
|
|
"Get the names of all of the perspectives of which `buffer` is a member."
|
|
|
|
(cl-loop for perspective being the hash-value of perspectives-hash
|
|
|
|
if (member buffer (persp-buffers perspective))
|
|
|
|
collect (persp-name perspective)))
|
|
|
|
|
|
|
|
(defun persp-pick-perspective-by-buffer (buffer)
|
2015-01-10 12:57:44 -07:00
|
|
|
"Select a buffer and go to the perspective to which that buffer
|
|
|
|
belongs. If the buffer belongs to more than one perspective
|
|
|
|
completion will be used to pick the perspective to switch to.
|
|
|
|
Switch the focus to the window in which said buffer is displayed
|
|
|
|
if such a window exists. Otherwise display the buffer in whatever
|
|
|
|
window is active in the perspective."
|
|
|
|
(interactive (list (funcall persp-interactive-completion-function
|
|
|
|
"Buffer: " (mapcar 'buffer-name (buffer-list)))))
|
|
|
|
(let* ((perspectives (persp-get-perspectives-for-buffer (get-buffer buffer)))
|
|
|
|
(perspective (if (> (length perspectives) 1)
|
|
|
|
(funcall persp-interactive-completion-function
|
|
|
|
(format "Select the perspective in which you would like to visit %s."
|
|
|
|
buffer)
|
|
|
|
perspectives)
|
|
|
|
(car perspectives))))
|
|
|
|
(if (string= (persp-name persp-curr) perspective)
|
|
|
|
;; This allows the opening of a single buffer in more than one window
|
|
|
|
;; in a single perspective.
|
|
|
|
(switch-to-buffer buffer)
|
|
|
|
(progn
|
|
|
|
(persp-switch perspective)
|
|
|
|
(if (get-buffer-window buffer)
|
|
|
|
(set-frame-selected-window nil (get-buffer-window buffer))
|
|
|
|
(switch-to-buffer buffer))))))
|
2014-12-24 02:18:45 -07:00
|
|
|
|
|
|
|
(defun persp-mode-switch-buffers (arg)
|
|
|
|
(interactive "P")
|
|
|
|
(if arg (call-interactively 'ido-switch-buffer)
|
|
|
|
(call-interactively 'persp-pick-perspective-by-buffer)))
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-24 02:18:45 -07:00
|
|
|
(define-key persp-mode-map (kbd "C-x b") 'persp-mode-switch-buffers))
|
|
|
|
:bind ("C-c 9" . persp-switch))
|
2014-12-10 09:16:21 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package projectile
|
|
|
|
:ensure t
|
2014-12-11 16:30:18 -07:00
|
|
|
:demand t
|
2014-12-03 15:38:14 -07:00
|
|
|
:config
|
|
|
|
(progn
|
2015-02-08 19:53:01 -07:00
|
|
|
(defun projectile-make-all-subdirs-projects (directory)
|
|
|
|
(cl-loop for file-info in (directory-files-and-attributes directory)
|
|
|
|
do (when (nth 1 file-info)
|
|
|
|
(write-region "" nil
|
|
|
|
(expand-file-name
|
|
|
|
(concat directory "/"
|
|
|
|
(nth 0 file-info) "/.projectile"))))))
|
2015-06-23 15:39:17 -06:00
|
|
|
(setq helm-ag-always-set-extra-option nil)
|
2015-03-08 01:37:26 -07:00
|
|
|
(defun imalison:do-ag (&optional arg)
|
2014-12-11 16:30:18 -07:00
|
|
|
(interactive "P")
|
|
|
|
(if arg (helm-do-ag) (helm-projectile-ag)))
|
2014-12-03 15:38:14 -07:00
|
|
|
(projectile-global-mode)
|
|
|
|
(setq projectile-enable-caching t)
|
|
|
|
(setq projectile-completion-system 'helm)
|
|
|
|
(helm-projectile-on)
|
2014-12-13 22:29:48 -07:00
|
|
|
(diminish 'projectile-mode)
|
2015-06-23 15:39:17 -06:00
|
|
|
(unbind-key "C-c p S" projectile-command-map)
|
2014-12-13 22:29:48 -07:00
|
|
|
(unbind-key "C-c p s a" projectile-command-map)
|
|
|
|
(unbind-key "C-c p s g" projectile-command-map)
|
|
|
|
(unbind-key "C-c p s s" projectile-command-map)
|
|
|
|
(unbind-key "C-c p s" projectile-command-map)
|
2015-03-08 01:37:26 -07:00
|
|
|
(unbind-key "C-c p f" projectile-command-map)
|
|
|
|
(bind-key* "C-c p s" 'imalison:do-ag)
|
|
|
|
(bind-key* "C-c p f" 'imalison:projectile-find-file)
|
|
|
|
(defun imalison:projectile-find-file (arg)
|
|
|
|
(interactive "P")
|
|
|
|
(if arg
|
|
|
|
(projectile-find-file-other-window)
|
|
|
|
(projectile-find-file))))
|
|
|
|
:bind (("C-x f" . projectile-find-file-in-known-projects)
|
|
|
|
("C-c p f" . imalison:projectile-find-file))
|
2014-12-03 15:38:14 -07:00
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(use-package persp-projectile
|
|
|
|
:ensure t
|
2015-06-28 23:31:41 -06:00
|
|
|
:commands projectile-persp-switch-project)))
|
|
|
|
|
|
|
|
(use-package helm-projectile
|
2015-07-26 03:18:31 -06:00
|
|
|
:ensure t
|
|
|
|
:commands (helm-projectile-on)
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(helm-delete-action-from-source "Search in Project" helm-source-projectile-projects)
|
|
|
|
(defun imalison:switch-to-project-and-search (dir)
|
|
|
|
(let ((default-directory dir)
|
|
|
|
(projectile-require-project-root nil)
|
|
|
|
(helm-action-buffer "this-buffer-should-not-exist"))
|
|
|
|
(helm-projectile-ag)))
|
|
|
|
(helm-add-action-to-source "Search in Project"
|
|
|
|
'imalison:switch-to-project-and-search
|
|
|
|
helm-source-projectile-projects)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(use-package smex
|
|
|
|
:ensure t
|
2014-12-05 16:37:10 -07:00
|
|
|
;; Using helm-M-x instead
|
2014-12-04 23:37:56 -07:00
|
|
|
:disabled t
|
2014-12-03 15:38:14 -07:00
|
|
|
:commands smex
|
|
|
|
;; This is here because smex feels like part of ido
|
|
|
|
:bind ("M-x" . smex))
|
|
|
|
|
|
|
|
(use-package ido
|
|
|
|
:ensure t
|
|
|
|
:commands ido-mode
|
|
|
|
:config
|
|
|
|
(progn
|
2015-01-28 13:47:44 -07:00
|
|
|
(setq ido-auto-merge-work-directories-length -1)
|
2015-01-29 22:24:01 -07:00
|
|
|
(setq ido-use-filename-at-point nil)
|
2014-12-12 05:34:07 -07:00
|
|
|
(setq ido-create-new-buffer 'always)
|
2014-12-03 15:38:14 -07:00
|
|
|
(ido-everywhere 1)
|
|
|
|
(setq ido-enable-flex-matching t)
|
|
|
|
(use-package flx :ensure t)
|
|
|
|
(use-package flx-ido
|
|
|
|
:commands flx-ido-mode
|
|
|
|
:ensure t
|
|
|
|
:init (flx-ido-mode 1)
|
|
|
|
:config
|
|
|
|
(progn
|
2015-01-02 13:24:19 -07:00
|
|
|
;; disable ido faces to see flx highlights.
|
|
|
|
;; This makes flx-ido much faster.
|
|
|
|
(setq gc-cons-threshold 20000000)
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq ido-use-faces nil)))
|
|
|
|
(use-package ido-ubiquitous
|
|
|
|
:ensure t
|
2014-12-12 01:51:23 -07:00
|
|
|
:disabled t
|
2014-12-03 15:38:14 -07:00
|
|
|
:commands (ido-ubiquitous-mode))
|
|
|
|
(use-package ido-vertical-mode
|
|
|
|
:ensure t
|
2015-06-21 19:30:56 -06:00
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(ido-vertical-mode 1)
|
|
|
|
(setq ido-vertical-define-keys 'C-n-C-p-up-and-down)))
|
2014-12-12 05:34:07 -07:00
|
|
|
(use-package flx-ido :ensure t)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-07-01 01:45:50 -06:00
|
|
|
|
|
|
|
(when (or (and (boundp 'use-ido) use-ido) (not (boundp 'use-ido))) (ido-mode 1))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; elisp
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(setq edebug-trace t)
|
|
|
|
|
2014-12-12 05:34:07 -07:00
|
|
|
(use-package macrostep :ensure t)
|
|
|
|
|
2014-12-09 02:47:39 -07:00
|
|
|
(use-package paredit
|
|
|
|
:ensure t)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package elisp-slime-nav
|
|
|
|
:ensure t
|
|
|
|
:commands elisp-slime-nav-mode
|
|
|
|
:config
|
|
|
|
(diminish 'elisp-slime-nav-mode)
|
|
|
|
:init
|
|
|
|
(add-hook 'emacs-lisp-mode-hook (lambda () (elisp-slime-nav-mode t))))
|
|
|
|
|
|
|
|
|
|
|
|
(defun imenu-elisp-sections ()
|
|
|
|
(setq imenu-prev-index-position-function nil)
|
|
|
|
(setq imenu-space-replacement nil)
|
|
|
|
(add-to-list 'imenu-generic-expression
|
|
|
|
`("Package"
|
|
|
|
,"(use-package \\(.+\\)$" 1))
|
|
|
|
(add-to-list 'imenu-generic-expression
|
|
|
|
`("Section"
|
|
|
|
,(concat ";\\{1,4\\} =\\{10,80\\}\n;\\{1,4\\} \\{10,80\\}"
|
|
|
|
"\\(.+\\)$") 1) t))
|
|
|
|
|
|
|
|
(put 'use-package 'lisp-indent-function 1) ;; reduce indentation for use-package
|
|
|
|
(add-hook 'emacs-lisp-mode-hook 'imenu-elisp-sections)
|
|
|
|
(add-hook 'emacs-lisp-mode-hook 'flatten-current-imenu-index-function)
|
2015-01-02 13:27:44 -07:00
|
|
|
(add-hook 'emacs-lisp-mode-hook (lambda ()
|
|
|
|
(setq indent-tabs-mode nil)
|
|
|
|
(setq show-trailing-whitespace t)))
|
2014-12-03 15:38:14 -07:00
|
|
|
(define-key lisp-mode-shared-map (kbd "C-c C-c") 'eval-defun)
|
|
|
|
(define-key lisp-mode-shared-map (kbd "C-c C-r") 'eval-and-replace)
|
2014-12-08 02:02:57 -07:00
|
|
|
(define-key lisp-mode-shared-map (kbd "C-c o r") 'up-list-region)
|
2014-12-03 15:38:14 -07:00
|
|
|
(define-key lisp-mode-shared-map (kbd "C-c o o") 'up-list-back)
|
2014-12-24 02:17:38 -07:00
|
|
|
(define-key lisp-mode-shared-map (kbd "C-x C-e") 'eval-region-or-last-sexp)
|
2015-01-03 10:56:55 -07:00
|
|
|
(unbind-key "C-j" lisp-interaction-mode-map)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Python
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(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)
|
2015-01-02 13:24:19 -07:00
|
|
|
(make-virtualenv-args virtual-envs)))))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(defun make-virtualenv-args (virtual-envs)
|
|
|
|
(apply #'append (mapcar (lambda (env) `("-v" ,env)) virtual-envs)))
|
|
|
|
|
2015-06-23 15:39:17 -06:00
|
|
|
(defun imalison:project-root-or-current-directory ()
|
2014-12-03 15:38:14 -07:00
|
|
|
(if (projectile-project-p)
|
2015-06-23 15:39:17 -06:00
|
|
|
(projectile-project-root) (if (buffer-file-name) (file-name-directory (buffer-file-name)))))
|
|
|
|
|
|
|
|
(defun get-virtual-envs ()
|
|
|
|
(let ((project-root (imalison:project-root-or-current-directory)))
|
|
|
|
(when project-root
|
2014-12-03 15:38:14 -07:00
|
|
|
(condition-case ex
|
2015-06-23 15:39:17 -06:00
|
|
|
(cl-remove-if-not 'file-exists-p
|
|
|
|
(mapcar (lambda (env-suffix)
|
|
|
|
(concat project-root env-suffix))
|
|
|
|
'(".tox/py27/" "env/" ".tox/venv/")))
|
2014-12-03 15:38:14 -07:00
|
|
|
('error
|
|
|
|
(message (format "Caught exception: [%s]" ex))
|
|
|
|
(setq retval (cons 'exception (list ex))))
|
2015-06-23 15:39:17 -06:00
|
|
|
nil))))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-02-03 16:28:53 -07:00
|
|
|
(defun message-virtual-envs ()
|
2014-12-03 15:38:14 -07:00
|
|
|
(interactive)
|
2015-01-31 18:25:35 -07:00
|
|
|
(message "%s" (get-virtual-envs)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-08-02 16:36:44 -06:00
|
|
|
(use-package elpy
|
|
|
|
:ensure t
|
|
|
|
:commands elpy-enable
|
2015-03-09 16:39:58 -06:00
|
|
|
:config
|
|
|
|
(progn
|
2015-08-11 00:25:06 -06:00
|
|
|
(setq elpy-rpc-backend "jedi")
|
2015-08-05 12:04:28 -06:00
|
|
|
(elpy-enable)
|
2015-08-02 16:36:44 -06:00
|
|
|
(unbind-key "M-*" elpy-mode-map)
|
|
|
|
(bind-key "M-," 'pop-tag-mark elpy-mode-map)))
|
2015-03-09 16:39:58 -06:00
|
|
|
|
|
|
|
(use-package company-jedi
|
|
|
|
:commands company-jedi
|
|
|
|
:ensure t)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package python
|
|
|
|
:commands python-mode
|
|
|
|
:mode ("\\.py\\'" . python-mode)
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(fset 'main "if __name__ == '__main__':")
|
|
|
|
(fset 'sphinx-class ":class:`~")
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(use-package pymacs :ensure t)
|
|
|
|
(use-package sphinx-doc :ensure t)
|
2014-12-15 18:23:00 -07:00
|
|
|
(defun imalison:python-mode ()
|
|
|
|
(setq show-trailing-whitespace t)
|
|
|
|
(if use-python-tabs (python-tabs))
|
|
|
|
(subword-mode t)
|
2015-08-05 12:04:28 -06:00
|
|
|
(elpy-mode)
|
2015-08-07 18:00:51 -06:00
|
|
|
(imalison:make-imenu-index-flat)
|
2015-08-02 16:36:44 -06:00
|
|
|
;; Will this work with elpy. Seems like elpy has its own
|
|
|
|
;; mechanism for handling this
|
|
|
|
;; (add-virtual-envs-to-jedi-server)
|
2014-12-15 18:23:00 -07:00
|
|
|
(remove-hook 'completion-at-point-functions
|
2015-03-09 16:39:58 -06:00
|
|
|
'python-completion-complete-at-point 'local)
|
2015-06-23 15:39:17 -06:00
|
|
|
(add-to-list 'company-backends 'company-jedi))
|
2014-12-15 18:23:00 -07:00
|
|
|
(add-hook 'python-mode-hook #'imalison:python-mode))))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Scala
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(use-package scala-mode2
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(use-package ensime
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(add-hook 'scala-mode-hook 'ensime-scala-mode-hook)
|
|
|
|
(defun guide-key/scala-mode-hook ()
|
|
|
|
(guide-key/add-local-guide-key-sequence "C-c C-v"))
|
|
|
|
(add-hook 'scala-mode-hook 'guide-key/scala-mode-hook)))
|
|
|
|
(setq scala-indent:align-parameters t))
|
|
|
|
:mode (("\\.scala\\'" . scala-mode)
|
|
|
|
("\\.sc\\'" . scala-mode))
|
|
|
|
:ensure t)
|
|
|
|
|
2015-01-28 17:59:40 -07:00
|
|
|
;; =============================================================================
|
|
|
|
;; Java
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(add-hook 'java-mode-hook (lambda ()
|
|
|
|
(setq c-basic-offset 4
|
|
|
|
tab-width 4
|
|
|
|
indent-tabs-mode t)))
|
|
|
|
|
|
|
|
(use-package android-mode
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(setq android-mode-sdk-dir
|
|
|
|
(s-trim (shell-command-to-string "android_sdk_directory")))))
|
|
|
|
|
2015-03-08 01:37:26 -07:00
|
|
|
(use-package gradle-mode :ensure t)
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
;; =============================================================================
|
|
|
|
;; JavaScript
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-06-15 06:06:48 -06:00
|
|
|
(defun tape-onlyify ()
|
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(move-end-of-line nil)
|
|
|
|
(re-search-backward "^test")
|
|
|
|
(forward-sexp)
|
|
|
|
(if (looking-at ".only") (progn (zap-to-char 1 (string-to-char "(")) (insert "("))
|
|
|
|
(insert ".only"))))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package js2-mode
|
|
|
|
:ensure t
|
2015-03-08 01:37:26 -07:00
|
|
|
:commands (js2-mode)
|
2014-12-10 09:16:21 -07:00
|
|
|
:mode "\\.js\\'"
|
2014-12-03 15:38:14 -07:00
|
|
|
:bind
|
|
|
|
(("C-c b" . web-beautify-js))
|
|
|
|
:init
|
|
|
|
(progn
|
2015-06-30 10:31:37 -06:00
|
|
|
(setq imalison:identifier-count 0)
|
|
|
|
(defun imalison:console-log-unique ()
|
|
|
|
(interactive)
|
2015-06-30 23:10:23 -06:00
|
|
|
(let* ((identifier-string (int-to-string imalison:identifier-count))
|
|
|
|
(uuid (imalison:uuid)))
|
|
|
|
(insert (format "console.log('%s//////////%s//////////');" identifier-string uuid))
|
2015-06-30 10:31:37 -06:00
|
|
|
(setq imalison:identifier-count (+ imalison:identifier-count 1))))
|
2015-08-13 01:49:31 -06:00
|
|
|
(defun imalison:js2-mode-hook ()
|
|
|
|
;; Sensible defaults
|
|
|
|
(setq js2-bounce-indent-p nil
|
2015-06-29 00:30:47 -06:00
|
|
|
js2-basic-offset 4
|
|
|
|
js2-indent-level 4
|
|
|
|
js2-basic-offset 4
|
|
|
|
js2-highlight-level 3
|
2015-06-21 14:47:26 -06:00
|
|
|
js2-include-node-externs t
|
|
|
|
js2-mode-show-parse-errors nil
|
2015-08-13 01:49:31 -06:00
|
|
|
js2-mode-show-strict-warnings nil
|
|
|
|
indent-tabs-mode nil
|
|
|
|
js2-indent-level 4
|
|
|
|
js2-basic-offset 4
|
|
|
|
js2-indent-switch-body t)
|
|
|
|
(edconf-find-file-hook) ;; Make sure that editorconfig takes precedence
|
|
|
|
(tern-mode t)
|
|
|
|
(when nil (skewer-mode)) ;; TODO: reenable
|
|
|
|
(setq imenu-create-index-function
|
|
|
|
(lambda ()
|
|
|
|
(imalison:flatten-imenu-index
|
|
|
|
(js2-mode-create-imenu-index)))))
|
|
|
|
|
|
|
|
(add-hook 'js2-mode-hook 'imalison:js2-mode-hook)
|
2015-06-21 14:48:24 -06:00
|
|
|
(add-hook 'js2-mode-hook 'js2-imenu-extras-mode)))
|
|
|
|
|
2015-08-02 16:44:24 -06:00
|
|
|
(use-package js2-refactor
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(js2r-add-keybindings-with-prefix "C-c C-m")
|
|
|
|
(add-hook 'js2-mode-hook #'js2-refactor-mode)))
|
|
|
|
|
2015-06-21 14:48:24 -06:00
|
|
|
(use-package skewer-mode
|
|
|
|
:ensure t
|
|
|
|
:commands skewer-mode
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(add-hook 'css-mode-hook #'skewer-css-mode)
|
|
|
|
(add-hook 'html-mode-hook #'skewer-html-mode)))
|
|
|
|
|
|
|
|
(use-package tern
|
|
|
|
:commands tern-mode
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(use-package company-tern
|
|
|
|
:config (add-to-list 'company-backends 'company-tern)))
|
2015-04-28 14:44:03 -06:00
|
|
|
|
|
|
|
(defun delete-tern-process ()
|
|
|
|
(interactive)
|
|
|
|
(delete-process "tern"))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(use-package json-mode
|
|
|
|
:ensure t
|
|
|
|
:mode "\\.json\\'"
|
|
|
|
:init
|
|
|
|
(add-hook 'json-mode-hook
|
|
|
|
(lambda ()
|
2015-06-15 06:08:27 -06:00
|
|
|
(setq indent-tabs-mode nil)
|
|
|
|
(setq js-indent-level 4))))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-08-13 17:50:04 -06:00
|
|
|
(use-package jsx-mode
|
|
|
|
:ensure t
|
|
|
|
:mode "\\.jsx\\'")
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(eval-after-load 'css-mode
|
|
|
|
'(define-key css-mode-map (kbd "C-c b") 'web-beautify-css))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Ruby
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(use-package robe
|
|
|
|
:ensure t
|
|
|
|
:commands robe-mode
|
|
|
|
:init
|
2015-01-15 22:38:06 -07:00
|
|
|
(progn (add-hook 'ruby-mode-hook
|
2015-08-04 12:00:36 -06:00
|
|
|
(lambda () (robe-mode)))))
|
2015-01-15 22:38:06 -07:00
|
|
|
|
|
|
|
(use-package rinari :ensure t)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2015-08-05 12:05:33 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; C/C++
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-06-29 11:17:42 -06:00
|
|
|
;; XXX: None of this looks ruby related. Why is this here?
|
2015-03-08 23:21:24 -06:00
|
|
|
(setq-default c-basic-offset 4
|
2015-06-21 14:48:40 -06:00
|
|
|
tab-width 4
|
|
|
|
indent-tabs-mode t)
|
2015-03-08 23:21:24 -06:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package helm-gtags
|
|
|
|
:ensure t
|
2015-07-29 17:34:15 -06:00
|
|
|
:disabled t
|
2014-12-03 15:38:14 -07:00
|
|
|
:config (custom-set-variables
|
2015-01-02 13:24:19 -07:00
|
|
|
'(helm-gtags-path-style 'relative)
|
|
|
|
'(helm-gtags-ignore-case t)
|
|
|
|
'(helm-gtags-auto-update t))
|
2014-12-03 15:38:14 -07:00
|
|
|
:bind
|
|
|
|
(("M-t" . helm-gtags-find-tag)
|
|
|
|
("M-r" . helm-gtags-find-rtag)
|
|
|
|
("M-s" . helm-gtags-find-symbol)
|
|
|
|
("C-c <" . helm-gtags-previous-history)
|
2015-06-15 06:07:42 -06:00
|
|
|
("C-c >" . helm-gtags-next-history))
|
2014-12-03 15:38:14 -07:00
|
|
|
: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)))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; TeX
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-01-26 02:55:47 -07:00
|
|
|
(defun guess-TeX-master (filename)
|
|
|
|
"Guess the master file for FILENAME from currently open .tex files."
|
|
|
|
(let ((candidate nil)
|
|
|
|
(filename (file-name-nondirectory filename)))
|
|
|
|
(save-excursion
|
|
|
|
(dolist (buffer (buffer-list))
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(let ((name (buffer-name))
|
|
|
|
(file buffer-file-name))
|
|
|
|
(if (and file (string-match "\\.tex$" file))
|
|
|
|
(progn
|
|
|
|
(goto-char (point-min))
|
2015-02-12 01:23:27 -07:00
|
|
|
(if (re-search-forward
|
|
|
|
(concat "\\\\input{" filename "}") nil t)
|
2015-01-26 02:55:47 -07:00
|
|
|
(setq candidate file))
|
2015-02-12 01:23:27 -07:00
|
|
|
(if (re-search-forward
|
|
|
|
"\\\\include{" (file-name-sans-extension filename) "}"
|
|
|
|
nil t)
|
2015-01-26 02:55:47 -07:00
|
|
|
(setq candidate file))))))))
|
|
|
|
(if candidate
|
|
|
|
(message "TeX master document: %s" (file-name-nondirectory candidate)))
|
|
|
|
candidate))
|
|
|
|
|
|
|
|
(defun set-TeX-master ()
|
|
|
|
(setq TeX-master (guess-TeX-master (buffer-file-name))))
|
|
|
|
|
2015-01-28 13:45:32 -07:00
|
|
|
(use-package tex
|
2014-12-03 15:38:14 -07:00
|
|
|
:ensure auctex
|
|
|
|
:commands TeX-mode
|
|
|
|
:config
|
|
|
|
(progn
|
2015-01-26 02:55:47 -07:00
|
|
|
(add-hook 'TeX-mode-hook 'set-TeX-master)
|
|
|
|
(unbind-key "C-j" LaTeX-mode-map)
|
|
|
|
(unbind-key "C-j" TeX-mode-map)
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq TeX-auto-save t)
|
|
|
|
(setq TeX-parse-self t)
|
|
|
|
(setq TeX-save-query nil)
|
2015-01-26 02:55:47 -07:00
|
|
|
(setq TeX-PDF-mode t)
|
|
|
|
(TeX-global-PDF-mode t)
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq-default TeX-master nil)))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; other modes
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-08-05 12:04:53 -06:00
|
|
|
(use-package go-mode
|
|
|
|
:ensure t
|
|
|
|
:mode (("\\.go\\'" . go-mode)))
|
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(use-package rust-mode :ensure t
|
|
|
|
:mode (("\\.rs\\'" . rust-mode)))
|
|
|
|
|
|
|
|
(use-package yaml-mode :ensure t
|
|
|
|
:mode (("\\.yaml\\'" . yaml-mode)
|
2015-01-02 13:24:19 -07:00
|
|
|
("\\.yml\\'" . yaml-mode)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(use-package sgml-mode
|
|
|
|
:ensure t
|
|
|
|
:commands sgml-mode
|
|
|
|
:bind ("C-c b" . web-beautify-html))
|
|
|
|
|
|
|
|
(use-package gitconfig-mode
|
|
|
|
:ensure t
|
|
|
|
:mode "\\.?gitconfig\\'")
|
|
|
|
|
|
|
|
(use-package evil :ensure t :commands (evil-mode))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Custom Key Bindings
|
|
|
|
;; =============================================================================
|
2015-01-02 13:27:44 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
;; Miscellaneous
|
|
|
|
(global-unset-key (kbd "C-o")) ;; Avoid collision with tmux binding.
|
|
|
|
(bind-key "M-q" 'fill-or-unfill-paragraph)
|
|
|
|
(bind-key "C-c C-s" 'sudo-edit)
|
|
|
|
(bind-key "C-c SPC"
|
|
|
|
(lambda () (interactive)
|
|
|
|
(if current-prefix-arg (helm-global-mark-ring) (helm-mark-ring))))
|
|
|
|
(bind-key "C-c e" 'os-copy)
|
|
|
|
(bind-key "C-x p" 'pop-to-mark-command)
|
|
|
|
(setq set-mark-command-repeat-pop t)
|
|
|
|
(bind-key "C-x C-b" 'buffer-menu)
|
|
|
|
(bind-key "C-x C-c" 'kill-emacs)
|
|
|
|
(bind-key "C-x C-i" 'imenu)
|
|
|
|
(bind-key "C-x C-r" (lambda () (interactive) (revert-buffer t t)))
|
|
|
|
(bind-key "C-x O" (lambda () (interactive) (other-window -1)))
|
|
|
|
(bind-key "C-x w" 'whitespace-mode)
|
|
|
|
(bind-key "M-n" 'forward-paragraph)
|
|
|
|
(bind-key "M-p" 'backward-paragraph)
|
2014-12-08 02:02:57 -07:00
|
|
|
(bind-key "C-M-<backspace>" 'backward-kill-sexp)
|
2015-01-03 13:03:41 -07:00
|
|
|
(bind-key "s-<return>" 'toggle-frame-fullscreen)
|
2015-06-29 00:30:39 -06:00
|
|
|
(bind-key "M-|" 'imalison:shell-command-on-region)
|
2015-06-30 23:10:38 -06:00
|
|
|
(bind-key "C--" 'undo)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(fset 'global-set-key-to-use-package
|
|
|
|
(lambda (&optional arg) "Keyboard macro." (interactive "p")
|
|
|
|
(kmacro-exec-ring-item
|
2015-01-02 13:24:19 -07:00
|
|
|
(quote ([1 67108896 19 100 6 23 40 19 41 return
|
|
|
|
backspace 32 46 6 4] 0 "%d")) arg)))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; toys
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(use-package hackernews :ensure t :commands hackernews)
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Appearance
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(defvar packages-appearance
|
|
|
|
'(monokai-theme solarized-theme zenburn-theme base16-theme molokai-theme
|
|
|
|
tango-2-theme gotham-theme sublime-themes ansi-color rainbow-delimiters
|
2015-08-16 05:20:08 -06:00
|
|
|
ample-theme material-theme))
|
2014-12-03 15:38:14 -07:00
|
|
|
|
2014-12-19 03:14:52 -07:00
|
|
|
(ensure-packages-installed packages-appearance)
|
2014-12-06 22:46:36 -07:00
|
|
|
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq inhibit-startup-screen t)
|
|
|
|
(blink-cursor-mode -1)
|
|
|
|
|
|
|
|
;; make whitespace-mode use just basic coloring
|
2014-12-22 11:09:03 -07:00
|
|
|
(setq whitespace-style (quote (spaces tabs newline space-mark
|
2014-12-03 15:38:14 -07:00
|
|
|
tab-mark newline-mark)))
|
|
|
|
(setq whitespace-display-mappings
|
2015-01-02 13:27:44 -07:00
|
|
|
'((space-mark 32 [183] [46])
|
2014-12-03 15:38:14 -07:00
|
|
|
(tab-mark 9 [9655 9] [92 9])))
|
|
|
|
|
|
|
|
(defun colorize-compilation-buffer ()
|
|
|
|
(read-only-mode)
|
|
|
|
(ansi-color-apply-on-region (point-min) (point-max))
|
|
|
|
(read-only-mode))
|
|
|
|
(add-hook 'compilation-filter-hook 'colorize-compilation-buffer)
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Themes
|
|
|
|
;; =============================================================================
|
|
|
|
|
2015-08-16 15:44:25 -06:00
|
|
|
(defvar imalison:my-theme 'material)
|
2014-12-03 15:38:14 -07:00
|
|
|
|
|
|
|
(defun random-choice (choices)
|
|
|
|
(nth (random (length choices)) choices))
|
|
|
|
|
2015-08-16 15:44:25 -06:00
|
|
|
(defun imalison:remove-fringe-and-hl-line-mode (&rest stuff)
|
2014-12-03 15:38:14 -07:00
|
|
|
(interactive)
|
|
|
|
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
|
|
|
|
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
|
|
|
|
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))
|
|
|
|
(set-fringe-mode 0)
|
2015-08-16 15:44:25 -06:00
|
|
|
(defvar-setq linum-format 'dynamic)
|
2014-12-03 15:38:14 -07:00
|
|
|
(setq left-margin-width 0)
|
2015-08-16 15:44:25 -06:00
|
|
|
(defvar-setq hl-line-mode nil))
|
2015-07-01 01:45:33 -06:00
|
|
|
|
2015-03-09 16:39:58 -06:00
|
|
|
(when (file-exists-p custom-after-file) (load custom-after-file))
|
2015-02-05 16:00:19 -07:00
|
|
|
|
2015-08-16 15:44:25 -06:00
|
|
|
(defun imalison:appearance (&optional frame)
|
|
|
|
(interactive)
|
|
|
|
(message "called set appearance")
|
|
|
|
(if (display-graphic-p)
|
|
|
|
(progn
|
|
|
|
(set-face-attribute 'default nil :font "Source Code Pro")
|
2015-08-16 17:11:25 -06:00
|
|
|
(set-face-attribute 'default nil :weight 'semi-bold)
|
2015-08-16 17:43:38 -06:00
|
|
|
(set-face-attribute 'default nil :height 135))
|
|
|
|
(progn
|
|
|
|
(load-theme 'source-code-pro t)
|
|
|
|
(message "not setting font")))
|
2015-08-16 17:11:25 -06:00
|
|
|
(load-theme imalison:my-theme t)
|
2015-08-16 17:43:38 -06:00
|
|
|
(imalison:remove-fringe-and-hl-line-mode)
|
|
|
|
(message "finished set appearance"))
|
2015-08-16 15:44:25 -06:00
|
|
|
|
|
|
|
;; This is needed because you can't set the font or theme at daemon start-up.
|
2015-08-16 17:43:38 -06:00
|
|
|
;; (when (display-graphic-p) (imalison:appearance))
|
|
|
|
(add-hook 'after-init-hook 'imalison:appearance)
|
2015-08-16 15:44:25 -06:00
|
|
|
(add-hook 'after-make-frame-functions 'imalison:appearance)
|
2015-07-09 19:29:57 -06:00
|
|
|
;; Local Variables:
|
|
|
|
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
|
|
|
|
;; End:
|