summaryrefslogtreecommitdiff
path: root/.config/emacs/custom.el
blob: 935d195a7f8440a1d70959390a31cdf69d273793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
;; -*- lexical-binding: t; -*-
(custom-set-variables
 ;; custom-set-variables 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.
 '(after-save-hook '(executable-make-buffer-file-executable-if-script-p))
 '(async-shell-command-buffer 'new-buffer)
 '(auto-revert-avoid-polling t)
 '(backup-directory-alist '(("" . "~/.emacs.backup")))
 '(column-number-mode t)
 '(comint-scroll-show-maximum-output nil)
 '(delete-selection-mode t)
 '(describe-bindings-outline t)
 '(diff-default-read-only t)
 '(electric-pair-mode t)
 '(enable-recursive-minibuffers t)
 '(epg-pinentry-mode 'loopback)
 '(eshell-scroll-show-maximum-output nil)
 '(font-use-system-font t)
 '(footnote-body-tag-spacing 1)
 '(footnote-section-tag "")
 '(frame-resize-pixelwise t)
 '(gdb-many-windows t)
 '(gnus-cloud-method "nnimap:gmail")
 '(highlight-nonselected-windows t)
 '(hscroll-step 1)
 '(ibuffer-default-sorting-mode 'filename/process)
 '(indent-tabs-mode nil)
 '(inhibit-startup-screen t)
 '(line-number-display-limit-width 2000)
 '(lua-indent-level 2)
 '(menu-bar-mode nil)
 '(minibuffer-depth-indicate-mode t)
 '(read-char-by-name-sort 'code)
 '(repeat-mode t)
 '(scroll-bar-mode nil)
 '(scroll-conservatively 10)
 '(scroll-preserve-screen-position t)
 '(send-mail-function 'smtpmail-send-it)
 '(split-width-threshold 120)
 '(switch-to-buffer-obey-display-actions t)
 '(tab-bar-show 1)
 '(tool-bar-mode nil)
 '(truncate-lines t)
 '(visual-line-fringe-indicators '(left-curly-arrow right-curly-arrow))
 '(what-cursor-show-names t))
(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.
 )