blob: e131490e7d0bfd7f3056bb5594a7cd7afffe13ae (
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
54
55
|
(setq echo-keystrokes 0.1
use-dialog-box nil
visible-bell t
shell-command-switch "-ic"
x-select-enable-clipboard t ; Share clipboard with system.
x-select-enable-primary t
ispell-program-name "aspell"
whitespace-style '(spaces tabs newline space-mark tab-mark newline-mark)
tramp-default-method "ssh"
sentence-end-double-space nil
enable-recursive-minibuffers t
browse-url-browser-function 'browse-url-generic
browse-url-generic-program "firefox")
(setq-default indicate-empty-lines t)
(show-paren-mode t)
(defalias 'yes-or-no-p 'y-or-n-p)
;; Set location of custom.el.
(setq custom-file "~/.emacs.d/custom.el")
(load custom-file)
;; Store all backup and autosave files in tmp dir.
(setq backup-directory-alist `((".*" . ,temporary-file-directory))
auto-save-file-name-transforms `((".*" ,temporary-file-directory t)))
(global-auto-revert-mode t)
;; Make scripts executable at save.
(add-hook 'after-save-hook
'executable-make-buffer-file-executable-if-script-p)
(transient-mark-mode -1)
(put 'narrow-to-region 'disabled nil)
(put 'narrow-to-page 'disabled nil)
(put 'set-goal-column 'disabled nil)
(require-package 'key-chord)
(key-chord-mode 1)
(global-set-key (kbd "C-h :") 'find-function)
;; Disable `suspend-frame' binding.
(global-unset-key (kbd "C-x C-z"))
;; Avoid shift key for `backward-paragraph' and `forward-paragraph'.
(global-unset-key (kbd "M-}"))
(global-set-key (kbd "M-]") 'forward-paragraph)
(global-unset-key (kbd "M-{"))
(global-set-key (kbd "M-[") 'backward-paragraph)
(provide 'init-general)
|