ambevar-dotfiles/.emacs.d/lisp/main.el

360 lines
12 KiB
EmacsLisp
Raw Normal View History

2016-10-14 14:03:30 +02:00
;; Main options
;; Minimal UI. Run early to hide it as soon as possible.
2014-03-08 11:48:35 +01:00
(setq inhibit-startup-screen t)
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(menu-bar-mode -1)
(when (fboundp 'set-scroll-bar-mode)
(set-scroll-bar-mode 'left)
(scroll-bar-mode -1)
(define-key mickey-minor-mode-map (kbd "C-<f6>") 'toggle-scroll-bar))
2014-03-08 11:48:35 +01:00
2013-06-18 17:14:31 +02:00
;; Remember last cursor position.
(require 'saveplace)
(setq save-place-file (concat emacs-cache-folder "saveplace"))
2016-10-05 06:56:16 +02:00
(setq-default save-place-mode t)
2014-03-03 21:05:09 +01:00
;; When the daemon is killed abruptly, places are not saved. Adding this hook
;; allows to save places at a strategic moment.
(add-hook 'before-save-hook 'save-place-kill-emacs-hook)
2014-03-10 11:26:12 +01:00
;; url-cookie
(setq url-cookie-file (concat emacs-cache-folder "url.cookies"))
2014-02-21 20:14:50 +01:00
;; Bookmark file to cache folder.
(setq bookmark-default-file (concat emacs-cache-folder "emacs.bmk"))
;; Recent files.
2016-06-09 18:20:38 +02:00
(setq recentf-save-file (concat emacs-cache-folder "recentf"))
2013-06-18 17:14:31 +02:00
;; Disable autosave features.
(setq auto-save-default nil)
2013-06-04 20:51:04 +02:00
(setq auto-save-list-file-prefix nil)
2013-06-18 17:14:31 +02:00
;; Place backup files in specific directory.
(setq backup-directory-alist
2013-07-09 11:25:15 +02:00
`((".*" . ,(concat emacs-cache-folder "backups/"))))
2013-06-12 22:56:30 +02:00
;; Other backup options.
; (setq backup-inhibited t)
; (setq make-backup-files t)
; (setq version-control t)
;; Default mode
(setq default-major-mode 'text-mode)
2013-06-18 17:14:31 +02:00
;; Disable suspend key since it is useless on Emacs server.
(global-unset-key (kbd "C-z"))
(global-unset-key (kbd "C-x C-z"))
2013-03-04 17:31:57 +01:00
;; Make questions less annoying.
(defalias 'yes-or-no-p 'y-or-n-p)
2013-10-20 18:19:19 +02:00
;; Allow some protected functions.
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
2014-02-23 13:54:39 +01:00
(put 'narrow-to-page 'disabled nil)
2013-10-20 18:19:19 +02:00
;; Print column number in mode line.
(column-number-mode 1)
;; Print buffer size in mode line.
(size-indication-mode 1)
2013-03-04 17:31:57 +01:00
;; Kill whole line including \n.
(setq kill-whole-line t)
2013-02-26 12:04:44 +01:00
;; Alternative scrolling
(setq scroll-error-top-bottom t)
;; Narrow page navigation.
(define-key mickey-minor-mode-map (kbd "C-x M-n") (lambda () (interactive) (narrow-to-page 1)))
(define-key mickey-minor-mode-map (kbd "C-x M-p") (lambda () (interactive) (narrow-to-page -1)))
2014-02-23 13:54:39 +01:00
;; Line numbers
2013-05-24 11:44:23 +02:00
(add-hook 'find-file-hook (lambda () (linum-mode 1)))
(define-key mickey-minor-mode-map (kbd "C-<f5>") 'linum-mode)
;; Emacs-nox does not display a fringe after the linum: Setting linum-format in
;; linum-before-numbering-hook is not the right approach as it will change the
;; type of linum-format in the middle. See linum-update-window.
;; See http://stackoverflow.com/questions/3626632/right-align-line-numbers-with-linum-mode
;; and http://stackoverflow.com/questions/3626632/right-align-line-numbers-with-linum-mode.
;; The complexity is not worth the benefit.
;; Indentation
2014-10-24 14:58:38 +02:00
(setq-default tab-width 2)
(defvaralias 'standard-indent 'tab-width)
(setq-default indent-tabs-mode t)
2014-10-30 20:51:42 +01:00
;; Lisp should not use tabs.
(mapc
2014-10-30 20:51:42 +01:00
(lambda (hook)
(add-hook
hook
(lambda ()
(setq indent-tabs-mode nil))))
'(lisp-mode-hook emacs-lisp-mode-hook))
(add-hook
'emacs-lisp-mode-hook
(lambda ()
(local-set-key (kbd "M-.") 'find-symbol-at-point)))
2014-11-10 00:02:42 +01:00
(add-hook
'change-log-mode-hook
(lambda ()
(setq tab-width 2)
(setq left-margin 2)))
;; This needs to be set globally since they are defined as local variable and
;; Emacs does not know how to set an alias on a local variable.
(defvaralias 'c-basic-offset 'tab-width)
(defvaralias 'sh-basic-offset 'tab-width)
;; Line by line scrolling
(setq scroll-step 1)
2015-04-26 17:17:08 +02:00
;; Autofill tweak.
2014-02-23 13:54:39 +01:00
(setq sentence-end-double-space nil)
;; There is no prog-mode-hook on Emacs<24.
(require 'functions) ; for `page-number-mode'
(add-hook
'prog-mode-hook
(lambda ()
(page-number-mode t)))
(define-key mickey-minor-mode-map (kbd "C-<f7>") 'whitespace-mode)
2014-11-12 15:09:14 +01:00
(setq
whitespace-style
'(face empty indentation space-after-tab space-before-tab tab-mark trailing))
;; `whitespace-report' will mistakenly always report empty lines at
;; beginning and end of buffer as long as there is at least one empty line.
;; `whitespace-cleanup' works properly however.
;; DONE: Reported at http://debbugs.gnu.org/cgi/bugreport.cgi?bug=23740.
; (setq whitespace-action '(report-on-bogus))
;; WARNING: this can break some configuration files needing whitespaces at the
;; end. This can also slow down saving on big files.
; (require 'functions) ; for `sanitize'
; (add-hook 'before-save-hook 'sanitize)
(add-hook 'before-save-hook 'delete-trailing-whitespace)
;; Hippie expand.
;; (define-key mickey-minor-mode-map (kbd "M-/") 'hippie-expand)
;; Abbreviation support
2014-02-13 17:30:36 +01:00
(setq-default abbrev-mode t)
;; Set Fill Column
(setq-default fill-column 80)
(add-hook 'text-mode-hook 'turn-on-auto-fill)
;; Set man pages to display on a 80 character wide window.
(setenv "MANWIDTH" "80")
2016-07-21 13:37:46 +02:00
;; Enforce horizontal splitting. 140 means that the window is large enough to
;; hold 2 other windows of 70 columns.
(setq split-height-threshold nil)
(setq split-width-threshold 140)
2013-06-18 17:14:31 +02:00
;; Windmove mode: easy window switching with Shift+arrows.
(when (fboundp 'windmove-default-keybindings)
(define-key mickey-minor-mode-map (kbd "M-s-h") 'windmove-left)
(define-key mickey-minor-mode-map (kbd "M-s-j") 'windmove-down)
(define-key mickey-minor-mode-map (kbd "M-s-k") 'windmove-up)
(define-key mickey-minor-mode-map (kbd "M-s-l") 'windmove-right))
2013-06-18 17:14:31 +02:00
;; Make Emacs use environment browser, or w3m if BROWSER is not set.
2013-02-26 18:30:31 +01:00
(setq browse-url-generic-program
(executable-find
(let ((b (getenv "BROWSER")))
(if b b "w3m" )))
browse-url-browser-function 'browse-url-generic)
2012-11-13 18:46:20 +01:00
;; Default ispell dictionnay. If not set, Emacs uses the current locale.
(setq ispell-dictionary "english")
(define-key mickey-minor-mode-map
(kbd "<f5>")
(lambda () (interactive) (ispell-change-dictionary "english")))
(define-key mickey-minor-mode-map
(kbd "<f6>")
(lambda () (interactive) (ispell-change-dictionary "francais")))
(define-key mickey-minor-mode-map
(kbd "<f7>")
(lambda () (interactive) (ispell-change-dictionary "svenska")))
2012-12-21 21:30:54 +01:00
2013-01-08 00:36:02 +01:00
;; Long paragraphs. Useful for quick navigation with backward-paragraph and
;; forward-paragraph.
(setq paragraph-start "
")
;; Show matching parenthesis
(show-paren-mode 1)
;; By default, theres a small delay before showing a matching parenthesis. Set
;; it to 0 to deactivate.
(setq show-paren-delay 0)
2016-10-05 06:56:16 +02:00
(setq show-paren-when-point-inside-paren t)
;; Electric Pairs to auto-complete () [] {} "" etc. You can use it on regions.
;; (if (>= emacs-major-version 24)
;; (electric-pair-mode 1))
;; Run terminal asynchronously in current `default-directory'.
;; This requires SHELL_CD to be used in the shell config.
(define-key mickey-minor-mode-map (kbd "C-x M-RET")
(lambda () (interactive)
(let ((term (getenv "TERMCMD")))
(when (executable-find term)
(start-process "dummy" nil "env" (concat "SHELL_CD=" default-directory) term)))))
;; Calendar ISO display.
(setq calendar-week-start-day 1)
(setq calendar-date-style 'iso)
;; Compilation bindings and conveniences.
(setq compilation-ask-about-save nil)
(eval-after-load 'compile
'(progn (make-variable-buffer-local 'compile-command)
;; Making `compilation-directory' local only works with `recompile'
;; and if `compile' is never used. In such a scenario,
;; `compile-command' is not saved by `recompile' itself which adds a
;; lot of bookkeeping.
; (make-variable-buffer-local 'compilation-directory)
; (make-variable-buffer-local 'compile-history)
))
;; Don't set these bindings in mickey as we might have to override them from
;; mode hooks.
(global-set-key (kbd "C-<f10>") 'compile)
(global-set-key (kbd "<f10>") (lambda () (interactive) (compile compile-command))) ; Do not use recompile since we want to change de compilation folder to the current buffer.
(global-set-key (kbd "<f11>") 'previous-error)
(global-set-key (kbd "<f12>") 'next-error)
;; Code browsing: make C-M-e jump to next function instead of the end of the current function.
(define-key mickey-minor-mode-map (kbd "C-M-e") (lambda () (interactive) (beginning-of-defun -1)))
2013-06-12 23:40:20 +02:00
;; Common LISP
(setq inferior-lisp-program "clisp")
(defadvice desktop-owner (after pry-from-cold-dead-hands activate)
"Don't allow dead emacsen to own the desktop file."
(when (not (emacs-process-p ad-return-value))
(setq ad-return-value nil)))
;; Desktop-mode
2017-04-28 07:24:51 +02:00
;; Let Emacs auto-load/save sessions only when running the daemon.
;; `server-running-p' is only useful once the daemon is started and cannot be
;; used for initialization. We use `daemonp' instead.
2017-04-28 07:24:51 +02:00
(when (daemonp)
(desktop-save-mode 1)
(setq history-length 250)
(setq desktop-dirname (concat emacs-cache-folder "desktop"))
(unless (file-directory-p desktop-dirname)
(make-directory desktop-dirname t))
(setq desktop-path `(,desktop-dirname))
;; TODO: `compile-history' should be buffer local but that does not work.
;; http://user42.tuxfamily.org/compile-history-local/index.html
;; http://stackoverflow.com/questions/22995203/one-compile-command-per-buffer-not-directory
; (add-to-list 'desktop-locals-to-save 'compile-history)
(add-to-list 'desktop-locals-to-save 'compile-command))
2014-02-21 20:14:50 +01:00
;; GMP documentation
(eval-after-load "info-look"
'(let ((mode-value (assoc 'c-mode (assoc 'symbol info-lookup-alist))))
(setcar (nthcdr 3 mode-value)
(cons '("(gmp)Function Index" nil "^ -.* " "\\>")
(nth 3 mode-value)))))
;; Buffer names.
2014-02-21 20:14:50 +01:00
(require 'uniquify)
(setq uniquify-buffer-name-style 'forward)
2014-03-13 16:13:21 +01:00
;; Skeleton settings
(require 'functions)
;; Do not expand abbrevs in skeletons.
(setq-default skeleton-further-elements '((abbrev-mode nil)))
(add-hook 'skeleton-end-hook 'skeleton-make-markers)
(define-key mickey-minor-mode-map (kbd "C->") 'skeleton-next-position)
(define-key mickey-minor-mode-map (kbd "C-<") (lambda () (interactive) (skeleton-next-position t)))
2014-03-13 16:13:21 +01:00
;; Disable prompt (but leave warning) on git symlink.
(setq vc-follow-symlinks t)
;; Clipboard and primary selection.
; (setq select-enable-clipboard t)
(setq select-enable-primary t)
2014-03-31 11:44:14 +02:00
;; Bibtex
(setq bibtex-entry-format '(opts-or-alts required-fields numerical-fields whitespace realign last-comma delimiters braces sort-fields))
(setq bibtex-field-delimiters 'double-quotes)
2015-09-23 14:32:47 +02:00
(add-hook
'bibtex-mode-hook
(lambda ()
(setq indent-tabs-mode nil)))
2014-03-31 11:44:14 +02:00
;; Remove auto-fill in web edits because wikis and forums do not like it.
;; This works for qutebrowser, but may need changes for other browsers.
(add-hook
'find-file-hook
(lambda ()
(when (string-match (concat (getenv "BROWSER") "-editor-*") (buffer-name))
(when (require 'with-editor nil t)
;; Just like git commits.
(with-editor-mode))
(auto-fill-mode -1))))
2013-07-09 10:57:02 +02:00
;; Mutt support.
(add-to-list 'auto-mode-alist '("/tmp/mutt-.*" . mail-mode))
(add-hook
'find-file-hook
(lambda ()
(when (and (string-match "/tmp/mutt-.*" (buffer-file-name))
(require 'with-editor nil t))
;; Just like git commits.
(with-editor-mode))))
2013-07-09 10:57:02 +02:00
;; Arch Linux PKGBUILD.
(add-to-list 'auto-mode-alist '("PKGBUILD" . sh-mode))
;; Subtitles support.
(add-to-list 'auto-mode-alist '("\\.srt\\'" . text-mode))
(add-hook
'mail-mode-hook
'mail-text)
;; Easy code folding toggle.
2016-10-08 05:10:11 +02:00
; (add-hook 'prog-mode-hook 'hs-minor-mode)
; (add-hook 'prog-mode-hook (lambda () (local-set-key (kbd "C-c h") 'hs-toggle-hiding)))
;; Move mouse away.
2015-05-14 16:45:04 +02:00
; (mouse-avoidance-mode 'banish)
;; Display defun in mode line.
(which-function-mode)
;; Replace maximized binding for fullscreen.
; (define-key mickey-minor-mode-map (kbd "M-<f10>") 'toggle-frame-fullscreen)
;; Scroll zooming.
(define-key mickey-minor-mode-map (kbd "C-<wheel-down>") 'text-scale-decrease)
(define-key mickey-minor-mode-map (kbd "C-<mouse-5>") 'text-scale-decrease)
(define-key mickey-minor-mode-map (kbd "C-<wheel-up>") 'text-scale-increase)
(define-key mickey-minor-mode-map (kbd "C-<mouse-4>") 'text-scale-increase)
2015-06-02 10:05:14 +02:00
(setq text-scale-mode-step 1.1)
2015-11-02 13:34:04 +01:00
;; Sort
(setq sort-fold-case t)
2016-10-05 06:56:16 +02:00
;; Replace not-so-useful comment-dwim binding.
(define-key mickey-minor-mode-map "\M-;" 'comment-line)
2016-10-06 14:37:53 +02:00
; In case you find eldoc too distracting.
;; (global-eldoc-mode 0)
;; Replace `kill-buffer' binding by `kill-this-buffer'.
(define-key mickey-minor-mode-map (kbd "C-x k") 'kill-this-buffer)
2016-12-10 17:53:59 +01:00
(setq ediff-window-setup-function 'ediff-setup-windows-plain
ediff-split-window-function 'split-window-horizontally)
2014-03-08 11:48:35 +01:00
(provide 'main)