2011-10-08 23:05:06 +03:00
|
|
|
;;; prelude-editor.el --- Emacs Prelude: enhanced core editing experience.
|
|
|
|
;;
|
2013-01-02 13:13:59 +02:00
|
|
|
;; Copyright © 2011-2013 Bozhidar Batsov
|
2011-10-08 23:05:06 +03:00
|
|
|
;;
|
2012-04-17 17:35:21 +03:00
|
|
|
;; Author: Bozhidar Batsov <bozhidar@batsov.com>
|
2013-03-07 09:57:33 +02:00
|
|
|
;; URL: https://github.com/bbatsov/prelude
|
2011-10-08 23:05:06 +03:00
|
|
|
;; Version: 1.0.0
|
|
|
|
;; Keywords: convenience
|
|
|
|
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Refinements of the core editing experience in Emacs.
|
|
|
|
|
|
|
|
;;; License:
|
|
|
|
|
|
|
|
;; This program is free software; you can redistribute it and/or
|
|
|
|
;; modify it under the terms of the GNU General Public License
|
|
|
|
;; as published by the Free Software Foundation; either version 3
|
|
|
|
;; of the License, or (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2011-10-15 13:04:02 +03:00
|
|
|
;; customize
|
2012-12-09 00:41:09 +02:00
|
|
|
(defgroup prelude nil
|
|
|
|
"Emacs Prelude configuration."
|
|
|
|
:prefix "prelude-"
|
2012-12-09 07:56:35 +02:00
|
|
|
:group 'convenience)
|
2011-10-15 13:04:02 +03:00
|
|
|
|
2012-12-08 20:59:59 +02:00
|
|
|
(defcustom prelude-auto-save t
|
|
|
|
"Non-nil values enable Prelude's auto save."
|
|
|
|
:type 'boolean
|
|
|
|
:group 'prelude)
|
|
|
|
|
2012-12-09 00:41:09 +02:00
|
|
|
(defcustom prelude-guru t
|
2013-03-27 19:06:28 +02:00
|
|
|
"Non-nil values enable guru-mode."
|
2012-12-09 00:41:09 +02:00
|
|
|
:type 'boolean
|
|
|
|
:group 'prelude)
|
|
|
|
|
2012-12-23 11:24:55 +02:00
|
|
|
(defcustom prelude-whitespace t
|
2012-12-09 01:01:16 +02:00
|
|
|
"Non-nil values enable Prelude's whitespace visualization."
|
|
|
|
:type 'boolean
|
|
|
|
:group 'prelude)
|
|
|
|
|
2013-03-26 00:35:00 +02:00
|
|
|
(defcustom prelude-clean-whitespace-on-save t
|
2013-03-28 17:30:03 +02:00
|
|
|
"Cleanup whitespace from file before it's saved.
|
|
|
|
Will only occur if prelude-whitespace is also enabled."
|
2013-03-26 00:35:00 +02:00
|
|
|
:type 'boolean
|
2013-03-28 17:22:33 +02:00
|
|
|
:group 'prelude)
|
2013-03-26 00:35:00 +02:00
|
|
|
|
2012-12-09 01:01:16 +02:00
|
|
|
(defcustom prelude-flyspell t
|
|
|
|
"Non-nil values enable Prelude's flyspell support."
|
2012-12-09 00:41:09 +02:00
|
|
|
:type 'boolean
|
|
|
|
:group 'prelude)
|
|
|
|
|
2012-02-27 21:49:00 +02:00
|
|
|
;; Death to the tabs! However, tabs historically indent to the next
|
|
|
|
;; 8-character offset; specifying anything else will cause *mass*
|
|
|
|
;; confusion, as it will change the appearance of every existing file.
|
|
|
|
;; In some cases (python), even worse -- it will change the semantics
|
|
|
|
;; (meaning) of the program.
|
|
|
|
;;
|
|
|
|
;; Emacs modes typically provide a standard means to change the
|
|
|
|
;; indentation width -- eg. c-basic-offset: use that to adjust your
|
|
|
|
;; personal indentation width, while maintaining the style (and
|
|
|
|
;; meaning) of any files you load.
|
|
|
|
(setq-default indent-tabs-mode nil) ;; don't use tabs to indent
|
|
|
|
(setq-default tab-width 8) ;; but maintain correct appearance
|
2011-10-07 23:25:37 +03:00
|
|
|
|
|
|
|
;; delete the selection with a keypress
|
|
|
|
(delete-selection-mode t)
|
|
|
|
|
|
|
|
;; store all backup and autosave files in the tmp dir
|
|
|
|
(setq backup-directory-alist
|
|
|
|
`((".*" . ,temporary-file-directory)))
|
|
|
|
(setq auto-save-file-name-transforms
|
|
|
|
`((".*" ,temporary-file-directory t)))
|
|
|
|
|
|
|
|
;; revert buffers automatically when underlying files are changed externally
|
|
|
|
(global-auto-revert-mode t)
|
|
|
|
|
|
|
|
;; hippie expand is dabbrev expand on steroids
|
|
|
|
(setq hippie-expand-try-functions-list '(try-expand-dabbrev
|
|
|
|
try-expand-dabbrev-all-buffers
|
|
|
|
try-expand-dabbrev-from-kill
|
|
|
|
try-complete-file-name-partially
|
|
|
|
try-complete-file-name
|
|
|
|
try-expand-all-abbrevs
|
|
|
|
try-expand-list
|
|
|
|
try-expand-line
|
|
|
|
try-complete-lisp-symbol-partially
|
|
|
|
try-complete-lisp-symbol))
|
|
|
|
|
2012-04-26 19:07:46 +03:00
|
|
|
;; smart pairing for all
|
2013-06-29 11:09:16 +03:00
|
|
|
(require 'smartparens-config)
|
2013-07-11 11:38:49 +03:00
|
|
|
(setq sp-base-key-bindings 'paredit)
|
2013-08-06 22:51:10 +03:00
|
|
|
(setq sp-autoskip-closing-pair 'always)
|
2013-09-26 12:31:00 +03:00
|
|
|
(setq sp-hybrid-kill-entire-symbol nil)
|
2013-08-22 14:58:19 +03:00
|
|
|
(sp-use-paredit-bindings)
|
2011-10-09 00:24:41 +03:00
|
|
|
|
2013-03-12 21:56:21 +02:00
|
|
|
;; diminish keeps the modeline tidy
|
|
|
|
(require 'diminish)
|
|
|
|
|
2011-10-07 23:25:37 +03:00
|
|
|
;; meaningful names for buffers with the same name
|
|
|
|
(require 'uniquify)
|
|
|
|
(setq uniquify-buffer-name-style 'forward)
|
|
|
|
(setq uniquify-separator "/")
|
|
|
|
(setq uniquify-after-kill-buffer-p t) ; rename after killing uniquified
|
|
|
|
(setq uniquify-ignore-buffers-re "^\\*") ; don't muck with special buffers
|
|
|
|
|
2011-10-22 23:50:40 +03:00
|
|
|
;; saveplace remembers your location in a file when saving files
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'saveplace)
|
2012-10-21 18:16:40 +03:00
|
|
|
(setq save-place-file (expand-file-name "saveplace" prelude-savefile-dir))
|
2011-10-22 23:50:40 +03:00
|
|
|
;; activate it for all buffers
|
|
|
|
(setq-default save-place t)
|
|
|
|
|
|
|
|
;; savehist keeps track of some history
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'savehist)
|
2011-10-22 23:50:40 +03:00
|
|
|
(setq savehist-additional-variables
|
|
|
|
;; search entries
|
|
|
|
'(search ring regexp-search-ring)
|
|
|
|
;; save every minute
|
|
|
|
savehist-autosave-interval 60
|
|
|
|
;; keep the home clean
|
2012-10-21 18:16:40 +03:00
|
|
|
savehist-file (expand-file-name "savehist" prelude-savefile-dir))
|
2013-03-12 21:56:21 +02:00
|
|
|
(savehist-mode +1)
|
2011-10-07 23:25:37 +03:00
|
|
|
|
|
|
|
;; save recent files
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'recentf)
|
2012-10-21 18:16:40 +03:00
|
|
|
(setq recentf-save-file (expand-file-name "recentf" prelude-savefile-dir)
|
2013-07-15 11:56:25 +03:00
|
|
|
recentf-max-saved-items 500
|
2011-10-22 23:50:40 +03:00
|
|
|
recentf-max-menu-items 15)
|
2013-03-12 21:56:21 +02:00
|
|
|
(recentf-mode +1)
|
2011-10-07 23:25:37 +03:00
|
|
|
|
|
|
|
;; use shift + arrow keys to switch between visible buffers
|
|
|
|
(require 'windmove)
|
2012-04-23 12:11:44 +03:00
|
|
|
(windmove-default-keybindings)
|
2011-10-07 23:25:37 +03:00
|
|
|
|
2012-03-07 11:51:57 +02:00
|
|
|
;; automatically save buffers associated with files on buffer switch
|
|
|
|
;; and on windows switch
|
2012-12-08 20:59:59 +02:00
|
|
|
(defun prelude-auto-save-command ()
|
2013-04-28 16:37:09 +03:00
|
|
|
"Save the current buffer if `prelude-auto-save' is not nil."
|
2012-12-08 20:59:59 +02:00
|
|
|
(when (and prelude-auto-save
|
|
|
|
buffer-file-name
|
2013-05-08 13:52:20 +03:00
|
|
|
(buffer-modified-p (current-buffer))
|
|
|
|
(file-writable-p buffer-file-name))
|
2012-12-08 20:59:59 +02:00
|
|
|
(save-buffer)))
|
|
|
|
|
2013-07-17 15:28:30 +03:00
|
|
|
(defmacro advise-commands (advice-name commands &rest body)
|
|
|
|
"Apply advice named ADVICE-NAME to multiple COMMANDS.
|
|
|
|
|
|
|
|
The body of the advice is in BODY."
|
|
|
|
`(progn
|
|
|
|
,@(mapcar (lambda (command)
|
|
|
|
`(defadvice ,command (before ,(intern (concat (symbol-name command) "-" advice-name)) activate)
|
|
|
|
,@body))
|
|
|
|
commands)))
|
|
|
|
|
|
|
|
;; advise all window switching functions
|
|
|
|
(advise-commands "auto-save"
|
|
|
|
(switch-to-buffer other-window windmove-up windmove-down windmove-left windmove-right)
|
|
|
|
(prelude-auto-save-command))
|
2012-12-08 20:59:59 +02:00
|
|
|
|
|
|
|
(add-hook 'mouse-leave-buffer-hook 'prelude-auto-save-command)
|
2012-03-07 11:51:57 +02:00
|
|
|
|
2012-04-23 12:13:56 +03:00
|
|
|
;; show-paren-mode: subtle highlighting of matching parens (global-mode)
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'paren)
|
2011-10-07 23:25:37 +03:00
|
|
|
(setq show-paren-style 'parenthesis)
|
2013-03-12 21:56:21 +02:00
|
|
|
(show-paren-mode +1)
|
2011-10-07 23:25:37 +03:00
|
|
|
|
2011-11-08 16:43:19 +02:00
|
|
|
;; highlight the current line
|
|
|
|
(global-hl-line-mode +1)
|
|
|
|
|
2012-02-15 22:02:14 +02:00
|
|
|
(require 'volatile-highlights)
|
|
|
|
(volatile-highlights-mode t)
|
2013-03-06 21:43:59 +02:00
|
|
|
(diminish 'volatile-highlights-mode)
|
2012-02-15 22:02:14 +02:00
|
|
|
|
2012-10-19 14:48:31 +03:00
|
|
|
;; note - this should be after volatile-highlights is required
|
|
|
|
;; add the ability to copy and cut the current line, without marking it
|
2013-04-12 19:05:40 +03:00
|
|
|
(defadvice kill-ring-save (before smart-copy activate compile)
|
2012-10-19 14:48:31 +03:00
|
|
|
"When called interactively with no active region, copy a single line instead."
|
|
|
|
(interactive
|
|
|
|
(if mark-active (list (region-beginning) (region-end))
|
|
|
|
(message "Copied line")
|
|
|
|
(list (line-beginning-position)
|
2013-07-08 18:34:57 +03:00
|
|
|
(line-end-position)))))
|
2012-10-19 14:48:31 +03:00
|
|
|
|
2013-04-12 19:05:40 +03:00
|
|
|
(defadvice kill-region (before smart-cut activate compile)
|
2012-10-19 14:48:31 +03:00
|
|
|
"When called interactively with no active region, kill a single line instead."
|
|
|
|
(interactive
|
|
|
|
(if mark-active (list (region-beginning) (region-end))
|
|
|
|
(list (line-beginning-position)
|
|
|
|
(line-beginning-position 2)))))
|
|
|
|
|
2011-10-07 23:25:37 +03:00
|
|
|
;; tramp, for sudo access
|
|
|
|
(require 'tramp)
|
|
|
|
;; keep in mind known issues with zsh - see emacs wiki
|
|
|
|
(setq tramp-default-method "ssh")
|
|
|
|
|
|
|
|
;; ido-mode
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'ido)
|
2013-04-28 16:29:56 +03:00
|
|
|
(require 'ido-ubiquitous)
|
2013-07-13 10:01:19 +03:00
|
|
|
(require 'flx-ido)
|
2011-10-07 23:25:37 +03:00
|
|
|
(setq ido-enable-prefix nil
|
|
|
|
ido-enable-flex-matching t
|
|
|
|
ido-create-new-buffer 'always
|
|
|
|
ido-use-filename-at-point 'guess
|
|
|
|
ido-max-prospects 10
|
2012-10-21 18:16:40 +03:00
|
|
|
ido-save-directory-list-file (expand-file-name "ido.hist" prelude-savefile-dir)
|
2013-08-06 22:40:31 +03:00
|
|
|
ido-default-file-method 'selected-window
|
|
|
|
ido-auto-merge-work-directories-length -1)
|
2013-03-12 21:56:21 +02:00
|
|
|
(ido-mode +1)
|
2013-07-14 23:32:06 +03:00
|
|
|
(ido-ubiquitous-mode +1)
|
2013-07-13 10:01:19 +03:00
|
|
|
;; smarter fuzzy matching for ido
|
|
|
|
(flx-ido-mode +1)
|
|
|
|
;; disable ido faces to see flx highlights
|
|
|
|
(setq ido-use-faces nil)
|
2013-04-24 19:05:33 +03:00
|
|
|
|
|
|
|
;; smex, remember recently and most frequently used commands
|
2013-04-28 16:29:56 +03:00
|
|
|
(require 'smex)
|
|
|
|
(setq smex-save-file (expand-file-name ".smex-items" prelude-savefile-dir))
|
2013-04-24 19:05:33 +03:00
|
|
|
(smex-initialize)
|
|
|
|
(global-set-key (kbd "M-x") 'smex)
|
|
|
|
(global-set-key (kbd "M-X") 'smex-major-mode-commands)
|
2011-10-07 23:25:37 +03:00
|
|
|
|
|
|
|
(set-default 'imenu-auto-rescan t)
|
|
|
|
|
2011-10-22 23:50:40 +03:00
|
|
|
;; flyspell-mode does spell-checking on the fly as you type
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'flyspell)
|
2011-10-07 23:25:37 +03:00
|
|
|
(setq ispell-program-name "aspell" ; use aspell instead of ispell
|
|
|
|
ispell-extra-args '("--sug-mode=ultra"))
|
|
|
|
|
2012-12-09 11:36:21 +02:00
|
|
|
(defun prelude-enable-flyspell ()
|
2013-04-28 16:37:09 +03:00
|
|
|
"Enable command `flyspell-mode' if `prelude-flyspell' is not nil."
|
2012-12-09 11:36:21 +02:00
|
|
|
(when (and prelude-flyspell (executable-find ispell-program-name))
|
|
|
|
(flyspell-mode +1)))
|
|
|
|
|
2013-03-26 00:35:00 +02:00
|
|
|
(defun prelude-cleanup-maybe ()
|
2013-04-28 16:37:09 +03:00
|
|
|
"Invoke `whitespace-cleanup' if `prelude-clean-whitespace-on-save' is not nil."
|
2013-03-28 17:22:33 +02:00
|
|
|
(when prelude-clean-whitespace-on-save
|
|
|
|
(whitespace-cleanup)))
|
2013-03-26 00:35:00 +02:00
|
|
|
|
2013-01-05 10:38:12 +02:00
|
|
|
(defun prelude-enable-whitespace ()
|
2013-04-28 16:37:09 +03:00
|
|
|
"Enable `whitespace-mode' if `prelude-whitespace' is not nil."
|
2013-01-05 10:38:12 +02:00
|
|
|
(when prelude-whitespace
|
|
|
|
;; keep the whitespace decent all the time (in this buffer)
|
2013-03-26 00:35:00 +02:00
|
|
|
(add-hook 'before-save-hook 'prelude-cleanup-maybe nil t)
|
2013-01-05 10:38:12 +02:00
|
|
|
(whitespace-mode +1)))
|
|
|
|
|
2012-12-09 11:36:21 +02:00
|
|
|
(add-hook 'text-mode-hook 'prelude-enable-flyspell)
|
2013-01-05 10:38:12 +02:00
|
|
|
(add-hook 'text-mode-hook 'prelude-enable-whitespace)
|
2011-10-08 23:05:06 +03:00
|
|
|
|
2012-02-23 18:22:18 +02:00
|
|
|
;; enable narrowing commands
|
2011-10-07 23:25:37 +03:00
|
|
|
(put 'narrow-to-region 'disabled nil)
|
2012-02-23 18:22:18 +02:00
|
|
|
(put 'narrow-to-page 'disabled nil)
|
|
|
|
(put 'narrow-to-defun 'disabled nil)
|
|
|
|
|
|
|
|
;; enabled change region case commands
|
|
|
|
(put 'upcase-region 'disabled nil)
|
|
|
|
(put 'downcase-region 'disabled nil)
|
2011-10-07 23:25:37 +03:00
|
|
|
|
2013-05-04 10:27:32 +03:00
|
|
|
;; enable erase-buffer command
|
|
|
|
(put 'erase-buffer 'disabled nil)
|
|
|
|
|
2011-12-05 16:30:05 +02:00
|
|
|
(require 'expand-region)
|
|
|
|
|
2011-10-07 23:25:37 +03:00
|
|
|
;; bookmarks
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'bookmark)
|
2012-10-21 18:16:40 +03:00
|
|
|
(setq bookmark-default-file (expand-file-name "bookmarks" prelude-savefile-dir)
|
2011-10-08 23:05:06 +03:00
|
|
|
bookmark-save-flag 1)
|
|
|
|
|
2011-10-10 12:27:17 +03:00
|
|
|
;; projectile is a project management mode
|
|
|
|
(require 'projectile)
|
2012-10-21 18:16:40 +03:00
|
|
|
(setq projectile-cache-file (expand-file-name "projectile.cache" prelude-savefile-dir))
|
2011-10-10 12:27:17 +03:00
|
|
|
(projectile-global-mode t)
|
2013-03-06 21:43:59 +02:00
|
|
|
(diminish 'projectile-mode "Prjl")
|
2012-04-12 14:54:25 +03:00
|
|
|
|
|
|
|
(require 'helm-misc)
|
2012-04-10 16:16:52 +03:00
|
|
|
(require 'helm-projectile)
|
|
|
|
|
|
|
|
(defun helm-prelude ()
|
|
|
|
"Preconfigured `helm'."
|
|
|
|
(interactive)
|
2012-10-31 09:24:46 +02:00
|
|
|
(condition-case nil
|
|
|
|
(if (projectile-project-root)
|
2013-07-11 11:23:15 +03:00
|
|
|
(helm-projectile)
|
2012-10-31 09:24:46 +02:00
|
|
|
;; otherwise fallback to helm-mini
|
|
|
|
(helm-mini))
|
|
|
|
;; fall back to helm mini if an error occurs (usually in projectile-project-root)
|
|
|
|
(error (helm-mini))))
|
2012-04-10 16:16:52 +03:00
|
|
|
|
2012-04-19 11:35:17 +03:00
|
|
|
;; shorter aliases for ack-and-a-half commands
|
|
|
|
(defalias 'ack 'ack-and-a-half)
|
|
|
|
(defalias 'ack-same 'ack-and-a-half-same)
|
|
|
|
(defalias 'ack-find-file 'ack-and-a-half-find-file)
|
|
|
|
(defalias 'ack-find-file-same 'ack-and-a-half-find-file-same)
|
2011-10-10 12:27:17 +03:00
|
|
|
|
2011-11-10 10:37:39 +02:00
|
|
|
;; dired - reuse current buffer by pressing 'a'
|
|
|
|
(put 'dired-find-alternate-file 'disabled nil)
|
|
|
|
|
2013-04-30 23:39:54 +03:00
|
|
|
;; always delete and copy recursively
|
|
|
|
(setq dired-recursive-deletes 'always)
|
|
|
|
(setq dired-recursive-copies 'always)
|
|
|
|
|
|
|
|
;; if there is a dired buffer displayed in the next window, use its
|
|
|
|
;; current subdir, instead of the current subdir of this dired buffer
|
|
|
|
(setq dired-dwim-target t)
|
|
|
|
|
2013-04-13 18:36:47 +03:00
|
|
|
;; enable some really cool extensions like C-x C-j(dired-jump)
|
|
|
|
(require 'dired-x)
|
|
|
|
|
2011-12-07 13:47:27 +02:00
|
|
|
;; ediff - don't start another frame
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'ediff)
|
2011-12-07 13:47:27 +02:00
|
|
|
(setq ediff-window-setup-function 'ediff-setup-windows-plain)
|
|
|
|
|
2012-03-07 13:06:33 +02:00
|
|
|
;; clean up obsolete buffers automatically
|
|
|
|
(require 'midnight)
|
|
|
|
|
|
|
|
;; automatically indenting yanked text if in programming-modes
|
2012-12-08 11:15:19 +02:00
|
|
|
(defvar yank-indent-modes
|
2013-02-10 18:12:57 +02:00
|
|
|
'(LaTeX-mode TeX-mode)
|
|
|
|
"Modes in which to indent regions that are yanked (or yank-popped).
|
|
|
|
Only modes that don't derive from `prog-mode' should be listed here.")
|
|
|
|
|
|
|
|
(defvar yank-indent-blacklisted-modes
|
|
|
|
'(python-mode slim-mode haml-mode)
|
|
|
|
"Modes for which auto-indenting is suppressed.")
|
2012-03-07 13:06:33 +02:00
|
|
|
|
|
|
|
(defvar yank-advised-indent-threshold 1000
|
|
|
|
"Threshold (# chars) over which indentation does not automatically occur.")
|
|
|
|
|
|
|
|
(defun yank-advised-indent-function (beg end)
|
|
|
|
"Do indentation, as long as the region isn't too large."
|
|
|
|
(if (<= (- end beg) yank-advised-indent-threshold)
|
|
|
|
(indent-region beg end nil)))
|
|
|
|
|
|
|
|
(defadvice yank (after yank-indent activate)
|
|
|
|
"If current mode is one of 'yank-indent-modes,
|
|
|
|
indent yanked text (with prefix arg don't indent)."
|
|
|
|
(if (and (not (ad-get-arg 0))
|
2013-02-10 18:12:57 +02:00
|
|
|
(not (member major-mode yank-indent-blacklisted-modes))
|
2012-03-07 13:06:33 +02:00
|
|
|
(or (derived-mode-p 'prog-mode)
|
|
|
|
(member major-mode yank-indent-modes)))
|
|
|
|
(let ((transient-mark-mode nil))
|
|
|
|
(yank-advised-indent-function (region-beginning) (region-end)))))
|
|
|
|
|
|
|
|
(defadvice yank-pop (after yank-pop-indent activate)
|
|
|
|
"If current mode is one of 'yank-indent-modes,
|
|
|
|
indent yanked text (with prefix arg don't indent)."
|
|
|
|
(if (and (not (ad-get-arg 0))
|
2013-02-10 18:12:57 +02:00
|
|
|
(not (member major-mode yank-indent-blacklisted-modes))
|
2012-03-07 13:06:33 +02:00
|
|
|
(or (derived-mode-p 'prog-mode)
|
|
|
|
(member major-mode yank-indent-modes)))
|
|
|
|
(let ((transient-mark-mode nil))
|
|
|
|
(yank-advised-indent-function (region-beginning) (region-end)))))
|
|
|
|
|
|
|
|
;; abbrev config
|
2012-10-05 19:35:39 +03:00
|
|
|
(add-hook 'text-mode-hook 'abbrev-mode)
|
2012-03-07 13:06:33 +02:00
|
|
|
|
|
|
|
;; make a shell script executable automatically on save
|
|
|
|
(add-hook 'after-save-hook
|
|
|
|
'executable-make-buffer-file-executable-if-script-p)
|
|
|
|
|
2013-05-17 19:24:56 +03:00
|
|
|
;; .zsh file is shell script too
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.zsh\\'" . shell-script-mode))
|
|
|
|
|
2012-12-23 11:24:55 +02:00
|
|
|
;; whitespace-mode config
|
2013-03-12 21:56:21 +02:00
|
|
|
(require 'whitespace)
|
2012-12-23 11:24:55 +02:00
|
|
|
(setq whitespace-line-column 80) ;; limit line length
|
|
|
|
(setq whitespace-style '(face tabs empty trailing lines-tail))
|
|
|
|
|
2012-03-07 13:06:33 +02:00
|
|
|
;; saner regex syntax
|
|
|
|
(require 're-builder)
|
|
|
|
(setq reb-re-syntax 'string)
|
|
|
|
|
2012-06-15 18:54:12 +03:00
|
|
|
(require 'eshell)
|
2012-10-21 18:16:40 +03:00
|
|
|
(setq eshell-directory-name (expand-file-name "eshell" prelude-savefile-dir))
|
2012-06-15 18:54:12 +03:00
|
|
|
|
2012-09-18 23:54:41 +03:00
|
|
|
(setq semanticdb-default-save-directory
|
2012-10-21 18:16:40 +03:00
|
|
|
(expand-file-name "semanticdb" prelude-savefile-dir))
|
2012-06-15 18:54:12 +03:00
|
|
|
|
2012-02-23 18:02:34 +02:00
|
|
|
;; enable Prelude's keybindings
|
|
|
|
(prelude-global-mode t)
|
|
|
|
|
2013-02-07 00:34:02 +02:00
|
|
|
;; sensible undo
|
|
|
|
(global-undo-tree-mode)
|
2013-03-06 21:43:59 +02:00
|
|
|
(diminish 'undo-tree-mode)
|
2013-02-07 00:34:02 +02:00
|
|
|
|
2013-01-01 21:38:50 +02:00
|
|
|
;; enable winner-mode to manage window configurations
|
|
|
|
(winner-mode +1)
|
|
|
|
|
2011-10-08 23:05:06 +03:00
|
|
|
(provide 'prelude-editor)
|
2011-10-07 23:25:37 +03:00
|
|
|
|
2011-10-08 23:05:06 +03:00
|
|
|
;;; prelude-editor.el ends here
|