2013-03-16 17:34:21 -06:00
|
|
|
;; =============================================================================
|
2013-03-15 11:35:58 -06:00
|
|
|
;; Ivan Malison
|
|
|
|
;; ___ _ __ ___ __ _ ___ ___
|
|
|
|
;; / _ \ '_ ` _ \ / _` |/ __/ __|
|
|
|
|
;; | __/ | | | | | (_| | (__\__ \
|
|
|
|
;; (_)___|_| |_| |_|\__,_|\___|___/
|
2013-03-16 17:34:21 -06:00
|
|
|
;; =============================================================================
|
2013-03-15 11:35:58 -06:00
|
|
|
|
|
|
|
(setq user-full-name "Ivan Malison")
|
|
|
|
(setq user-mail-address "<IvanMalison@gmail.com>")
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Load Path Configuration
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(let ((default-directory "~/.emacs.d/lisp/"))
|
|
|
|
(normal-top-level-add-subdirs-to-load-path))
|
2013-03-16 19:20:21 -06:00
|
|
|
(let ((default-directory "~/.emacs.d/elpa/"))
|
|
|
|
(normal-top-level-add-subdirs-to-load-path))
|
2013-03-15 11:35:58 -06:00
|
|
|
|
2013-03-16 21:09:42 -06:00
|
|
|
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/zenburn")
|
2013-03-26 11:04:08 -06:00
|
|
|
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/solarized")
|
2013-04-25 17:35:51 -06:00
|
|
|
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
|
2013-09-25 16:02:09 -06:00
|
|
|
(load-theme 'solarized-dark t)
|
2013-03-16 21:09:42 -06:00
|
|
|
|
2013-03-15 11:35:58 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; General Emacs Options
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
;; Disable the creation of backup files.
|
|
|
|
(setq backup-inhibited t)
|
|
|
|
(setq make-backup-files nil)
|
|
|
|
(setq auto-save-default nil)
|
|
|
|
|
|
|
|
;; Enable ido mode.
|
|
|
|
(require 'ido)
|
|
|
|
(ido-mode t)
|
|
|
|
(setq ido-enable-flex-matching t)
|
|
|
|
|
2013-03-16 17:34:21 -06:00
|
|
|
;; Give duplicate open buffers better titles.
|
2013-03-15 11:35:58 -06:00
|
|
|
(require 'uniquify)
|
|
|
|
(setq uniquify-buffer-name-style 'forward)
|
|
|
|
|
|
|
|
(add-hook 'python-mode-hook (lambda () (setq show-trailing-whitespace t)))
|
|
|
|
(setq visible-bell t)
|
|
|
|
|
|
|
|
;; Display line and column numbers in mode line.
|
|
|
|
(line-number-mode t)
|
|
|
|
(column-number-mode t)
|
2013-09-25 16:02:09 -06:00
|
|
|
(global-linum-mode t)
|
2013-03-15 11:35:58 -06:00
|
|
|
|
2013-03-16 17:34:21 -06:00
|
|
|
;; Don't disable downcase and upcase region.
|
|
|
|
(put 'upcase-region 'disabled nil)
|
|
|
|
(put 'downcase-region 'disabled nil)
|
|
|
|
|
2013-09-25 14:09:05 -06:00
|
|
|
;; Don't allow arrow keys
|
|
|
|
(require 'no-easy-keys)
|
|
|
|
(no-easy-keys 1)
|
|
|
|
|
2013-03-16 17:34:21 -06:00
|
|
|
;; Change the behavior of M-<arrow> so that it stops on underscores.
|
|
|
|
(defun change-major-mode-hook () (modify-syntax-entry ?_ "_"))
|
|
|
|
(setq c-subword-mode t)
|
|
|
|
|
2013-03-19 02:40:56 -06:00
|
|
|
;; Disable the menu bar.
|
|
|
|
(menu-bar-mode -1)
|
|
|
|
|
2013-04-11 11:40:05 -06:00
|
|
|
;; find-file-in-project
|
|
|
|
(setq ffip-limit 9999999999)
|
|
|
|
|
2013-07-08 12:06:11 -06:00
|
|
|
(setq js-indent-level 2)
|
|
|
|
|
|
|
|
(defun no-auto-fill-hook () (auto-fill-mode -1))
|
|
|
|
|
|
|
|
(add-hook 'html-mode-hook 'no-auto-fill-hook)
|
2013-09-25 16:02:09 -06:00
|
|
|
(add-hook 'text-mode-hook 'no-auto-fill-hook)
|
|
|
|
(remove-hook 'text-mode-hook #'turn-on-auto-fill)
|
2013-07-08 12:06:11 -06:00
|
|
|
|
|
|
|
(setq flyspell-issue-welcome-flag nil)
|
|
|
|
|
2013-09-26 18:49:42 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; Misc
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(defun ffip-get-buffer-name()
|
|
|
|
(interactive)
|
|
|
|
(path-relative-to-base-path (buffer-file-name) (expand-file-name (ffip-project-root))))
|
|
|
|
|
|
|
|
(defun path-relative-to-base-path(file-path base-path)
|
|
|
|
(mapconcat 'identity (list-diff (path-to-list base-path) (path-to-list file-path)) "/"))
|
|
|
|
|
|
|
|
(defun path-to-list(path)
|
|
|
|
(let ((path-list (split-string path "/")))
|
|
|
|
(if (= (length (car (last path-list))) 0) (butlast path-list) path-list)))
|
|
|
|
|
|
|
|
(defun list-diff(shorter longer)
|
|
|
|
(cond ((not shorter) longer)
|
|
|
|
((string= (car shorter) (car longer)) (list-diff (cdr shorter) (cdr longer)))
|
|
|
|
(t (throw 'error "longer does not match shorter"))))
|
|
|
|
|
2013-04-11 11:43:40 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; tmux
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(defun tmux-copy (&optional b e)
|
|
|
|
(interactive "r")
|
|
|
|
(shell-command-on-region b e "cat | tmux loadb -"))
|
|
|
|
|
2013-03-16 19:20:21 -06:00
|
|
|
;; =============================================================================
|
2013-04-10 16:43:11 -06:00
|
|
|
;; Flymake
|
2013-03-16 19:20:21 -06:00
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(require 'flymake)
|
|
|
|
(require 'flymake-cursor)
|
|
|
|
|
|
|
|
(defun flymake-pylint-init ()
|
|
|
|
(let* ((temp-file (flymake-init-create-temp-buffer-copy
|
|
|
|
'flymake-create-temp-inplace))
|
|
|
|
(local-file (file-relative-name
|
|
|
|
temp-file
|
|
|
|
(file-name-directory buffer-file-name))))
|
|
|
|
(list "pyflakes" (list local-file))))
|
|
|
|
|
|
|
|
(add-to-list 'flymake-allowed-file-name-masks '("\\.py\\'" flymake-pylint-init))
|
|
|
|
|
2013-04-10 16:43:11 -06:00
|
|
|
; Load flymake on non-temp buffers
|
2013-03-16 19:20:21 -06:00
|
|
|
(add-hook 'python-mode-hook
|
|
|
|
(lambda () (unless (eq buffer-file-name nil) (flymake-mode 1))))
|
|
|
|
|
2013-03-16 17:34:21 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; Python
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
;; Multi-lining for python.
|
2013-03-16 19:20:21 -06:00
|
|
|
(require 'multi-line-it)
|
2013-04-25 17:35:51 -06:00
|
|
|
(require 'emacs-testify)
|
2013-03-16 17:34:21 -06:00
|
|
|
|
2013-03-16 21:09:42 -06:00
|
|
|
(defun python-tabs ()
|
2013-03-25 15:26:34 -06:00
|
|
|
(setq tab-width 4
|
2013-03-16 19:20:21 -06:00
|
|
|
indent-tabs-mode t
|
2013-03-25 15:26:34 -06:00
|
|
|
python-indent-offset 4))
|
2013-04-10 16:43:11 -06:00
|
|
|
(python-tabs)
|
2013-03-16 17:34:21 -06:00
|
|
|
|
2013-03-28 14:09:12 -06:00
|
|
|
;; Yelp always uses tabs.
|
|
|
|
(add-hook 'python-mode-hook 'python-tabs)
|
2013-04-25 17:35:51 -06:00
|
|
|
(add-hook 'python-mode-hook (lambda () (subword-mode 1)))
|
2013-03-28 14:09:12 -06:00
|
|
|
|
2013-03-15 11:35:58 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; Custom Key Bindings
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
;; Fast cursor movement in vertical direction with Meta.
|
2013-09-25 14:09:05 -06:00
|
|
|
(global-set-key (kbd "M-n") (lambda () (interactive) (next-line 5)))
|
|
|
|
(global-set-key (kbd "M-p") (lambda () (interactive) (previous-line 5)))
|
|
|
|
(global-set-key (kbd "ESC n") (lambda () (interactive) (next-line 5)))
|
|
|
|
(global-set-key (kbd "ESC p") (lambda () (interactive) (previous-line 5)))
|
2013-03-15 11:35:58 -06:00
|
|
|
|
2013-04-10 16:43:11 -06:00
|
|
|
;; Macros
|
|
|
|
(fset 'ipdb "import ipdb; ipdb.set_trace()")
|
|
|
|
|
2013-03-15 11:35:58 -06:00
|
|
|
;; Miscellaneous
|
|
|
|
(global-set-key "\C-x\C-b" 'buffer-menu)
|
|
|
|
(global-set-key "\C-xw" 'whitespace-mode)
|
2013-04-25 17:35:51 -06:00
|
|
|
(global-set-key "\C-cw" 'tmux-copy)
|
2013-03-15 11:35:58 -06:00
|
|
|
(global-set-key "\C-x\C-r" (lambda () (interactive) (revert-buffer t t)))
|
2013-09-25 14:09:05 -06:00
|
|
|
(global-set-key "\M-g" 'goto-line)
|
2013-09-26 18:49:42 -06:00
|
|
|
(global-set-key "\C-c\C-c" 'comment-dwim)
|
2013-04-25 17:35:51 -06:00
|
|
|
(global-set-key "\C-ct" 'testify-run-test)
|
2013-07-08 12:13:35 -06:00
|
|
|
(global-set-key "\C-c\C-o" 'testify-run-case)
|
|
|
|
(global-set-key "\C-c1" 'evil-mode)
|
2013-03-27 19:25:41 -06:00
|
|
|
(global-set-key (kbd "C-c w") 'tmux-copy)
|
2013-03-28 14:05:03 -06:00
|
|
|
(global-set-key (kbd "C-x O") (lambda () (interactive) (other-window -1)))
|
2013-04-25 17:35:51 -06:00
|
|
|
(global-set-key "\C-ct" 'testify-run-test)
|
|
|
|
(global-set-key "\C-c\C-t" 'testify-run-case)
|
2013-03-27 19:25:41 -06:00
|
|
|
|
2013-09-26 18:49:42 -06:00
|
|
|
|
2013-03-27 19:25:41 -06:00
|
|
|
;; Something will occasionally override this binding.
|
|
|
|
(global-set-key "\C-cg" 'rope-goto-definition)
|
2013-03-15 11:35:58 -06:00
|
|
|
|
2013-03-28 14:05:03 -06:00
|
|
|
;; Macros
|
|
|
|
(fset 'ipdb "import ipdb; ipdb.set_trace()")
|
|
|
|
|
2013-03-15 11:35:58 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; ELPA
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(require 'package)
|
|
|
|
(add-to-list 'package-archives
|
2013-03-16 21:09:42 -06:00
|
|
|
'("marmalade" . "http://marmalade-repo.org/packages/"))
|
2013-03-15 11:35:58 -06:00
|
|
|
(package-initialize)
|
2013-03-16 21:09:42 -06:00
|
|
|
|
2013-03-24 13:56:49 -06:00
|
|
|
;; (when (not package-archive-contents)
|
|
|
|
;; (package-refresh-contents))
|
|
|
|
|
|
|
|
;; Add in your own as you wish:
|
|
|
|
;; (defvar my-packages '(starter-kit starter-kit-bindings)
|
|
|
|
;; "A list of packages to ensure are installed at launch.")
|
|
|
|
|
|
|
|
;; (when (not package-archive-contents)
|
|
|
|
;; (package-refresh-contents))
|
|
|
|
|
|
|
|
;; ;; Add in your own as you wish:
|
2013-04-10 16:43:11 -06:00
|
|
|
;; (defvar my-packages '(starter-kit starter-kit-lisp starter-kit-bindings)
|
2013-03-24 13:56:49 -06:00
|
|
|
;; "A list of packages to ensure are installed at launch.")
|
|
|
|
|
|
|
|
;; (dolist (p my-packages)
|
|
|
|
;; (when (not (package-installed-p p))
|
|
|
|
;; (package-install p)))
|
|
|
|
|
2013-03-16 21:09:42 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; elisp Helpers
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(defun plist-to-alist (the-plist)
|
|
|
|
(defun get-tuple-from-plist (the-plist)
|
|
|
|
(when the-plist
|
|
|
|
(cons (car the-plist) (cadr the-plist))))
|
|
|
|
|
|
|
|
(let ((alist '()))
|
|
|
|
(while the-plist
|
|
|
|
(add-to-list 'alist (get-tuple-from-plist the-plist))
|
|
|
|
(setq the-plist (cddr the-plist)))
|
|
|
|
alist))
|
|
|
|
|
|
|
|
;; =============================================================================
|
|
|
|
;; Appearance
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(require 'color-theme)
|
|
|
|
(require 'whitespace)
|
|
|
|
(require 'rainbow-delimiters)
|
|
|
|
|
2013-03-25 11:37:38 -06:00
|
|
|
;; make whitespace-mode use just basic coloring
|
|
|
|
(setq whitespace-style (quote (spaces tabs newline space-mark tab-mark newline-mark)))
|
|
|
|
(setq whitespace-display-mappings
|
|
|
|
'((space-mark 32 [183] [46])
|
|
|
|
(tab-mark 9 [9655 9] [92 9])))
|
|
|
|
|
2013-03-25 11:40:45 -06:00
|
|
|
;; (set-face-background 'mode-line "black")
|
|
|
|
;; (set-face-foreground 'mode-line "white")
|
|
|
|
;; (set-face-background 'mode-line-inactive "black")
|
2013-03-18 03:31:25 -06:00
|
|
|
|
2013-03-16 21:09:42 -06:00
|
|
|
;; Customize font-faces
|
|
|
|
(custom-set-faces
|
|
|
|
;; custom-set-faces was added by Custom.
|
|
|
|
;; If you edit it by hand, you could mess it up, so be careful.
|
|
|
|
;; Your init file should contain only one such instance.
|
|
|
|
;; If there is more than one, they won't work right.
|
|
|
|
'(flymake-errline ((((class color)) (:background "DarkViolet"))))
|
|
|
|
'(flymake-warnline ((((class color)) (:underline "Orange"))))
|
|
|
|
'(rainbow-delimiters-depth-1-face ((t (:foreground "green"))))
|
|
|
|
'(rainbow-delimiters-depth-2-face ((t (:foreground "blue"))))
|
|
|
|
'(rainbow-delimiters-depth-3-face ((t (:foreground "magenta"))))
|
|
|
|
'(rainbow-delimiters-depth-4-face ((t (:foreground "yellow"))))
|
|
|
|
'(rainbow-delimiters-depth-5-face ((t (:foreground "cyan"))))
|
|
|
|
'(rainbow-delimiters-depth-7-face ((t (:foreground "blue"))))
|
|
|
|
'(rainbow-delimiters-depth-8-face ((t (:foreground "yellow"))))
|
|
|
|
'(rainbow-delimiters-depth-9-face ((t (:foreground "magenta")))))
|
2013-03-19 20:59:41 -06:00
|
|
|
|
2013-03-24 13:56:49 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; Starter Kits
|
|
|
|
;; =============================================================================
|
|
|
|
|
|
|
|
(load-file "~/.emacs.d/emacs-for-python/epy-init.el")
|
2013-03-25 11:40:45 -06:00
|
|
|
|
2013-04-10 16:43:11 -06:00
|
|
|
(setq skeleton-pair nil) ;; This stuff sucks.
|
2013-03-25 11:45:07 -06:00
|
|
|
|
2013-03-25 11:40:45 -06:00
|
|
|
;; =============================================================================
|
|
|
|
;; Customize
|
|
|
|
;; =============================================================================
|