diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2019-05-25 12:24:15 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2019-05-25 12:24:15 +0200 |
| commit | 3c4f1147efe9519f617ff847ec0016f06550ea26 (patch) | |
| tree | 77ac1d6cc22528c8acf2338e87e4335ca33b3a19 | |
| parent | 15e2814706ea971b5fd917a694fdbb3fd91a26bd (diff) | |
| download | dotfiles-3c4f1147efe9519f617ff847ec0016f06550ea26.tar.xz | |
Update Emacs Custom file to the new quoting syntax
Obviously this will bite me in the rear if I ever use a
non-bleeding-edge version of Emacs.
| -rw-r--r-- | .emacs-custom.el | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/.emacs-custom.el b/.emacs-custom.el index fcd0b7a..ff0c986 100644 --- a/.emacs-custom.el +++ b/.emacs-custom.el @@ -3,18 +3,16 @@ ;; 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. - '(after-save-hook - (quote - (executable-make-buffer-file-executable-if-script-p))) - '(async-shell-command-buffer (quote new-buffer)) - '(backup-directory-alist (quote (("" . "~/.emacs.backup")))) + '(after-save-hook '(executable-make-buffer-file-executable-if-script-p)) + '(async-shell-command-buffer 'new-buffer) + '(backup-directory-alist '(("" . "~/.emacs.backup"))) '(column-number-mode t) '(comint-scroll-show-maximum-output nil) '(delete-selection-mode t) '(diff-hl-flydiff-mode t) '(dired-listing-switches "-al -Fhv --group-directories-first") - '(ediff-merge-split-window-function (quote split-window-vertically)) - '(ediff-split-window-function (quote split-window-horizontally)) + '(ediff-merge-split-window-function 'split-window-vertically) + '(ediff-split-window-function 'split-window-horizontally) '(electric-pair-mode t) '(enable-recursive-minibuffers t) '(erc-log-channels-directory "~/.irc-logs") @@ -29,8 +27,7 @@ '(generic-extras-enable-list '(ansible-inventory-generic-mode etc-fstab-generic-mode etc-modules-conf-generic-mode etc-passwd-generic-mode etc-services-generic-mode etc-sudoers-generic-mode hosts-generic-mode java-manifest-generic-mode java-properties-generic-mode pkginfo-generic-mode prototype-generic-mode resolve-conf-generic-mode x-resource-generic-mode xmodmap-generic-mode)) '(git-commit-setup-hook - (quote - (git-commit-save-message git-commit-setup-changelog-support git-commit-turn-on-auto-fill git-commit-turn-on-flyspell git-commit-propertize-diff with-editor-usage-message my/buffer-justify-full))) + '(git-commit-save-message git-commit-setup-changelog-support git-commit-turn-on-auto-fill git-commit-turn-on-flyspell git-commit-propertize-diff with-editor-usage-message my/buffer-justify-full)) '(global-diff-hl-mode t) '(global-page-break-lines-mode t nil (page-break-lines)) '(gnus-cloud-method "nnimap:gmail") @@ -42,40 +39,39 @@ '(isearch-lazy-count t) '(magit-diff-refine-hunk t) '(magit-ediff-dwim-show-on-hunks t) - '(magit-log-arguments (quote ("--graph" "--color" "--decorate" "-n256"))) - '(magit-log-section-arguments (quote ("--graph" "--color" "--decorate" "-n256"))) + '(magit-log-arguments '("--graph" "--color" "--decorate" "-n256")) + '(magit-log-section-arguments '("--graph" "--color" "--decorate" "-n256")) '(markdown-asymmetric-header t) '(markdown-command "pandoc -s") '(markdown-enable-math t) '(markdown-header-scaling t) - '(markdown-indent-on-enter (quote indent-and-new-item)) + '(markdown-indent-on-enter 'indent-and-new-item) '(menu-bar-mode nil) '(minibuffer-depth-indicate-mode t) '(org-startup-indented t) '(package-archives - (quote - (("melpa" . "https://melpa.org/packages/") - ("gnu" . "http://elpa.gnu.org/packages/")))) + '(("melpa" . "https://melpa.org/packages/") + ("gnu" . "http://elpa.gnu.org/packages/"))) '(package-selected-packages (quote (diff-hl rg delight paradox flycheck magit markdown-mode page-break-lines rust-mode wgrep))) - '(page-break-lines-modes (quote (fundamental-mode text-mode prog-mode special-mode))) + '(page-break-lines-modes '(fundamental-mode text-mode prog-mode special-mode)) '(paradox-execute-asynchronously t) '(paradox-github-token t) - '(paradox-spinner-type (quote random)) - '(python-fill-docstring-style (quote pep-257-nn)) + '(paradox-spinner-type 'random) + '(python-fill-docstring-style 'pep-257-nn) '(python-shell-interpreter "python3") '(read-buffer-completion-ignore-case t) '(read-file-name-completion-ignore-case t) '(scroll-bar-mode nil) '(scroll-conservatively 101) '(scroll-preserve-screen-position t) - '(send-mail-function (quote smtpmail-send-it)) + '(send-mail-function 'smtpmail-send-it) '(show-paren-mode t) '(split-width-threshold 120) '(tool-bar-mode nil) '(truncate-lines t) - '(visual-line-fringe-indicators (quote (left-curly-arrow right-curly-arrow)))) + '(visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. |
