2018-03-05 01:36:40 +00:00
|
|
|
;;; config.el --- Spacemacs Defaults Layer configuration File
|
2015-01-14 04:12:56 +00:00
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2015-01-14 04:12:56 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-01-14 04:12:56 +00:00
|
|
|
|
2014-09-01 16:18:34 +00:00
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;; Navigation
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
|
2015-09-08 01:16:15 +00:00
|
|
|
;; Auto refresh
|
2014-09-01 16:18:34 +00:00
|
|
|
(global-auto-revert-mode 1)
|
|
|
|
;; Also auto refresh dired, but be quiet about it
|
2015-03-15 02:55:05 +00:00
|
|
|
(setq global-auto-revert-non-file-buffers t
|
|
|
|
auto-revert-verbose nil)
|
2017-01-17 03:53:18 +00:00
|
|
|
(add-to-list 'global-auto-revert-ignore-modes 'Buffer-menu-mode)
|
2015-09-08 01:16:15 +00:00
|
|
|
|
2015-11-16 13:58:54 +00:00
|
|
|
;; Make dired "guess" target directory for some operations, like copy to
|
|
|
|
;; directory visited in other split buffer.
|
|
|
|
(setq dired-dwim-target t)
|
|
|
|
|
2015-04-13 19:29:46 +00:00
|
|
|
;; Regexp for useful and useless buffers for smarter buffer switching
|
2018-01-10 15:59:15 +00:00
|
|
|
(defvar spacemacs-useless-buffers-regexp '()
|
2015-04-13 19:29:46 +00:00
|
|
|
"Regexp used to determine if a buffer is not useful.")
|
2018-01-10 15:59:15 +00:00
|
|
|
(defvar spacemacs-useful-buffers-regexp '()
|
2015-04-13 19:29:46 +00:00
|
|
|
"Regexp used to define buffers that are useful despite matching
|
|
|
|
`spacemacs-useless-buffers-regexp'.")
|
2015-04-23 08:34:59 +00:00
|
|
|
|
2014-09-01 16:18:34 +00:00
|
|
|
;; no beep pleeeeeease ! (and no visual blinking too please)
|
2015-08-08 20:32:36 +00:00
|
|
|
(setq ring-bell-function 'ignore
|
|
|
|
visible-bell nil)
|
2014-09-01 16:18:34 +00:00
|
|
|
|
2014-12-11 04:23:51 +00:00
|
|
|
;; Hack to fix a bug with tabulated-list.el
|
|
|
|
;; see: http://redd.it/2dgy52
|
|
|
|
(defun tabulated-list-revert (&rest ignored)
|
|
|
|
"The `revert-buffer-function' for `tabulated-list-mode'.
|
|
|
|
It runs `tabulated-list-revert-hook', then calls `tabulated-list-print'."
|
|
|
|
(interactive)
|
|
|
|
(unless (derived-mode-p 'tabulated-list-mode)
|
|
|
|
(error "The current buffer is not in Tabulated List mode"))
|
|
|
|
(run-hooks 'tabulated-list-revert-hook)
|
|
|
|
;; hack is here
|
|
|
|
;; (tabulated-list-print t)
|
|
|
|
(tabulated-list-print))
|
|
|
|
|
2015-03-29 12:24:59 +00:00
|
|
|
;; Highlight and allow to open http link at point in programming buffers
|
|
|
|
;; goto-address-prog-mode only highlights links in strings and comments
|
|
|
|
(add-hook 'prog-mode-hook 'goto-address-prog-mode)
|
2015-10-08 08:58:58 +00:00
|
|
|
;; Highlight and follow bug references in comments and strings
|
|
|
|
(add-hook 'prog-mode-hook 'bug-reference-prog-mode)
|
2015-03-29 12:24:59 +00:00
|
|
|
|
2015-10-07 19:05:45 +00:00
|
|
|
;; Keep focus while navigating help buffers
|
|
|
|
(setq help-window-select 't)
|
|
|
|
|
2015-10-25 09:46:47 +00:00
|
|
|
;; Scroll compilation to first error or end
|
|
|
|
(setq compilation-scroll-output 'first-error)
|
|
|
|
|
2016-06-21 19:15:56 +00:00
|
|
|
;; Don't try to ping things that look like domain names
|
|
|
|
(setq ffap-machine-p-known 'reject)
|
|
|
|
|
2021-05-17 20:43:09 +00:00
|
|
|
;; Don't accept SPC as a yes for prompts
|
2021-05-17 20:48:37 +00:00
|
|
|
(unless dotspacemacs-use-SPC-as-y
|
2021-05-17 20:43:09 +00:00
|
|
|
(define-key query-replace-map (kbd "SPC") nil))
|
|
|
|
|
2021-03-21 01:14:12 +00:00
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;; Mouse
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
;; Mouse cursor in terminal mode
|
|
|
|
(xterm-mouse-mode 1)
|
|
|
|
|
|
|
|
(when (boundp 'mouse-wheel-scroll-amount)
|
|
|
|
;; scroll two line at a time (less "jumpy" than defaults)
|
|
|
|
(setq mouse-wheel-scroll-amount '(2)
|
|
|
|
;; don't accelerate scrolling
|
|
|
|
mouse-wheel-progressive-speed nil))
|
|
|
|
|
2014-09-01 16:18:34 +00:00
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;; Edit
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
|
2017-06-11 04:02:26 +00:00
|
|
|
;; Start with the *scratch* buffer in text mode (speeds up Emacs load time,
|
2014-09-01 16:18:34 +00:00
|
|
|
;; because it avoids autoloads of elisp modes)
|
|
|
|
(setq initial-major-mode 'text-mode)
|
2015-03-31 06:33:12 +00:00
|
|
|
|
2014-09-01 16:18:34 +00:00
|
|
|
;; use only spaces and no tabs
|
2015-03-15 02:55:05 +00:00
|
|
|
(setq-default indent-tabs-mode nil
|
2015-10-10 11:29:03 +00:00
|
|
|
tab-width 2)
|
2015-09-08 01:16:15 +00:00
|
|
|
|
2014-10-04 04:28:42 +00:00
|
|
|
;; Text
|
2014-09-01 16:18:34 +00:00
|
|
|
(setq longlines-show-hard-newlines t)
|
|
|
|
|
Various documentation copy-edits
Follow up the changes in the previous commit with some minor improvements
to formatting, grammar, spelling, and wording.
* layers/+distributions/spacemacs-docker/README.org: Replace "+" with
"and".
* layers/+email/mu4e/README.org: Use full sentences in the comments in the
mu4e-alert example.
* layers/+intl/japanese/README.org: Use verbatim markers for names of
files, functions, packages, and variables. Capitalize "Linux".
* layers/+os/osx/README.org: Capitalize "Emacs", "Vim", and "Evil".
* layers/+os/osx/config.el (osx-command-as, osx-use-dictionary-app):
* layers/+os/osx/keybindings.el (spacemacs/system-is-mac): Improve
docstrings.
* layers/+readers/dash/README.org: Capitalize "API", "Helm", and "Ivy".
* layers/+spacemacs/spacemacs-defaults/config.el
(delete-by-moving-to-trash): Use full sentences in comment.
* layers/+spacemacs/spacemacs-defaults/funcs.el
(spacemacs/toggle-frame-fullscreen-non-native): Improve docstrings.
2019-10-13 06:03:09 +00:00
|
|
|
;; Use system trash for file deletion.
|
|
|
|
;; This should work on Windows and Linux distros.
|
|
|
|
;; For macOS, see the osx layer.
|
2014-11-29 03:47:03 +00:00
|
|
|
(setq delete-by-moving-to-trash t)
|
|
|
|
|
2015-12-11 12:22:50 +00:00
|
|
|
;; auto fill breaks line beyond buffer's fill-column
|
|
|
|
(setq-default fill-column 80)
|
2015-04-06 20:02:14 +00:00
|
|
|
(spacemacs|diminish auto-fill-function " Ⓕ" " F")
|
2015-03-08 04:09:37 +00:00
|
|
|
|
2015-04-11 03:31:33 +00:00
|
|
|
;; persistent abbreviation file
|
|
|
|
(setq abbrev-file-name (concat spacemacs-cache-directory "abbrev_defs"))
|
|
|
|
|
2015-03-31 08:01:02 +00:00
|
|
|
;; Save clipboard contents into kill-ring before replace them
|
|
|
|
(setq save-interprogram-paste-before-kill t)
|
|
|
|
|
2015-06-27 12:04:38 +00:00
|
|
|
;; Single space between sentences is more widespread than double
|
2015-05-10 05:30:43 +00:00
|
|
|
(setq-default sentence-end-double-space nil)
|
|
|
|
|
2015-06-24 16:45:08 +00:00
|
|
|
;; The C-d rebinding that most shell-like buffers inherit from
|
|
|
|
;; comint-mode assumes non-evil configuration with its
|
|
|
|
;; `comint-delchar-or-maybe-eof' function, so we disable it
|
2015-09-29 05:07:57 +00:00
|
|
|
(with-eval-after-load 'comint
|
|
|
|
(define-key comint-mode-map (kbd "C-d") nil))
|
2015-06-24 16:45:08 +00:00
|
|
|
|
2015-10-30 16:20:02 +00:00
|
|
|
;; Prompt to open file literally if large file.
|
|
|
|
(add-hook 'find-file-hook 'spacemacs/check-large-file)
|
|
|
|
|
2014-09-01 16:18:34 +00:00
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;; UI
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
;; important for golden-ratio to better work
|
|
|
|
(setq window-combination-resize t)
|
|
|
|
;; Show column number in mode line
|
|
|
|
(setq column-number-mode t)
|
2016-05-12 15:12:13 +00:00
|
|
|
|
2014-09-01 16:18:34 +00:00
|
|
|
;; highlight current line
|
|
|
|
(global-hl-line-mode t)
|
|
|
|
;; no blink
|
2014-09-13 03:19:36 +00:00
|
|
|
(blink-cursor-mode 0)
|
2015-09-18 20:44:39 +00:00
|
|
|
;; When emacs asks for "yes" or "no", let "y" or "n" suffice
|
2014-09-01 16:18:34 +00:00
|
|
|
(fset 'yes-or-no-p 'y-or-n-p)
|
2014-09-17 19:42:59 +00:00
|
|
|
;; draw underline lower
|
|
|
|
(setq x-underline-at-descent-line t)
|
2015-04-03 22:16:18 +00:00
|
|
|
;; don't let the cursor go into minibuffer prompt
|
|
|
|
;; Tip taken from Xah Lee: http://ergoemacs.org/emacs/emacs_stop_cursor_enter_prompt.html
|
|
|
|
(setq minibuffer-prompt-properties
|
|
|
|
'(read-only t point-entered minibuffer-avoid-prompt face minibuffer-prompt))
|
2016-03-15 03:17:09 +00:00
|
|
|
;; Fullscreen/maximize frame on startup
|
2020-12-25 18:53:03 +00:00
|
|
|
(when (and (not spacemacs-initialized)
|
|
|
|
dotspacemacs-fullscreen-at-startup)
|
2021-05-17 20:43:09 +00:00
|
|
|
;; spacemacs/toggle-fullscreen-frame-on is NOT available during the startup,
|
|
|
|
;; but IS available during the subsequent config reloads
|
|
|
|
(if (fboundp 'spacemacs/toggle-fullscreen-frame-on)
|
|
|
|
(spacemacs/toggle-fullscreen-frame-on)
|
|
|
|
(spacemacs/toggle-frame-fullscreen)))
|
2015-08-01 10:52:08 +00:00
|
|
|
|
2016-02-19 12:28:29 +00:00
|
|
|
(setq ns-use-native-fullscreen (not dotspacemacs-fullscreen-use-non-native))
|
|
|
|
|
2016-07-14 08:13:55 +00:00
|
|
|
;; make `next-buffer', `other-buffer', etc. ignore useless buffers (see
|
|
|
|
;; `spacemacs/useless-buffer-p')
|
|
|
|
(let ((buf-pred-entry (assq 'buffer-predicate default-frame-alist)))
|
|
|
|
(if buf-pred-entry
|
|
|
|
;; `buffer-predicate' entry exists, modify it
|
|
|
|
(setcdr buf-pred-entry #'spacemacs/useful-buffer-p)
|
|
|
|
;; `buffer-predicate' entry doesn't exist, create it
|
|
|
|
(push '(buffer-predicate . spacemacs/useful-buffer-p) default-frame-alist)))
|
|
|
|
|
2014-09-01 16:18:34 +00:00
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;; Session
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
|
2013-01-01 04:41:59 +00:00
|
|
|
;; scratch buffer empty
|
2017-09-14 22:18:50 +00:00
|
|
|
(setq initial-scratch-message dotspacemacs-initial-scratch-message)
|
2015-05-04 12:12:39 +00:00
|
|
|
;; don't create backup~ files
|
2015-12-24 00:29:04 +00:00
|
|
|
(setq make-backup-files nil)
|
2015-05-04 12:12:39 +00:00
|
|
|
|
2015-06-19 03:54:07 +00:00
|
|
|
;; Auto-save file
|
|
|
|
(setq auto-save-default (not (null dotspacemacs-auto-save-file-location)))
|
|
|
|
(setq auto-save-list-file-prefix (concat spacemacs-auto-save-directory))
|
|
|
|
;; always save TRAMP URLs to cache directory no matter what is the value
|
|
|
|
;; of `dotspacemacs-auto-save-file-location'
|
|
|
|
(let ((autosave-dir (concat spacemacs-auto-save-directory "dist/")))
|
|
|
|
(setq auto-save-file-name-transforms
|
|
|
|
`(("\\`/[^/]*:\\([^/]*/\\)*\\([^/]*\\)\\'" ,autosave-dir t)))
|
|
|
|
(unless (or (file-exists-p autosave-dir)
|
|
|
|
(null dotspacemacs-auto-save-file-location))
|
|
|
|
(make-directory autosave-dir t)))
|
|
|
|
;; Choose auto-save location
|
2015-10-05 07:22:35 +00:00
|
|
|
(cl-case dotspacemacs-auto-save-file-location
|
2015-06-19 03:54:07 +00:00
|
|
|
(cache (let ((autosave-dir (concat spacemacs-auto-save-directory "site/")))
|
|
|
|
(add-to-list 'auto-save-file-name-transforms
|
|
|
|
`(".*" ,autosave-dir t) 'append)
|
|
|
|
(unless (file-exists-p autosave-dir)
|
|
|
|
(make-directory autosave-dir t))))
|
|
|
|
(original (setq auto-save-visited-file-name t))
|
|
|
|
(_ (setq auto-save-default nil
|
|
|
|
auto-save-list-file-prefix nil)))
|
2015-05-04 12:12:39 +00:00
|
|
|
|
2015-03-15 02:55:05 +00:00
|
|
|
;; remove annoying ellipsis when printing sexp in message buffer
|
|
|
|
(setq eval-expression-print-length nil
|
|
|
|
eval-expression-print-level nil)
|
2014-11-08 07:14:44 +00:00
|
|
|
|
2015-03-15 02:55:05 +00:00
|
|
|
;; cache files
|
2016-04-23 18:06:20 +00:00
|
|
|
(setq tramp-persistency-file-name (concat spacemacs-cache-directory "tramp"))
|
2014-11-08 07:14:44 +00:00
|
|
|
|
2015-03-15 02:55:05 +00:00
|
|
|
;; seems pointless to warn. There's always undo.
|
|
|
|
(put 'narrow-to-region 'disabled nil)
|
|
|
|
(put 'upcase-region 'disabled nil)
|
|
|
|
(put 'downcase-region 'disabled nil)
|
|
|
|
(put 'erase-buffer 'disabled nil)
|
|
|
|
(put 'scroll-left 'disabled nil)
|
|
|
|
(put 'dired-find-alternate-file 'disabled nil)
|
|
|
|
;; remove prompt if the file is opened in other clients
|
|
|
|
(defun server-remove-kill-buffer-hook ()
|
|
|
|
(remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function))
|
|
|
|
(add-hook 'server-visit-hook 'server-remove-kill-buffer-hook)
|
2016-06-24 15:54:47 +00:00
|
|
|
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;; Other
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
;; hook into `hack-local-variables' in order to allow switching spacemacs
|
|
|
|
;; configurations based on local variables
|
|
|
|
(add-hook 'hack-local-variables-hook #'spacemacs//run-local-vars-mode-hook)
|
2017-07-05 11:01:04 +00:00
|
|
|
|
|
|
|
;; Add buffer reference to internal list of killed buffers on `kill-buffer',
|
|
|
|
;; used for restoring recently killed buffers.
|
|
|
|
(add-hook 'kill-buffer-hook #'spacemacs//add-buffer-to-killed-list)
|
2018-10-16 06:30:29 +00:00
|
|
|
|
|
|
|
;; Don't load outdated compiled files.
|
|
|
|
(setq load-prefer-newer t)
|