blob: e7b65e1f3a6158087264edf4d76921adaf0d5aac (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
;; -*- lexical-binding: t; -*-
(use-package emacs
:init
;; Set all unicode
(set-charset-priority 'unicode)
(setq locale-coding-system 'utf-8
coding-system-for-read 'utf-8
coding-system-for-write 'utf-8)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(set-selection-coding-system 'utf-8)
(prefer-coding-system 'utf-8)
(setq default-process-coding-system '(utf-8-unix . utf-8-unix))
;; indent
(setq-default indent-tabs-mode nil)
(setq-default tab-width 4)
;; Newline at the end of file
(setq require-final-newline t)
;; delete the selection with a keypress
(delete-selection-mode t)
(global-auto-revert-mode t)
(global-hl-line-mode 1))
;; meaningful names for buffers with the same name
(use-package uniquify
:config
(setq uniquify-buffer-name-style 'forward)
(setq uniquify-separator "/")
(setq uniquify-after-kill-buffer-p t) ; rename after killing uniquified
(setq uniquify-ignore-buffers-re "^\\*")) ; don't muck with special buffers
;; saveplace remembers your location in a file when saving files
(setq save-place-file (expand-file-name "saveplace" savefile-dir))
;; activate it for all buffers
(save-place-mode 1)
;; savehist keeps track of some history
(use-package savehist
:config
(setq savehist-additional-variables
;; search entries
'(search-ring regexp-search-ring)
;; save every minute
savehist-autosave-interval 60
;; keep the home clean
savehist-file (expand-file-name "savehist" savefile-dir))
(savehist-mode +1))
(use-package diminish :ensure t)
(use-package smartparens
:ensure t
:defer nil
:bind
(:map smartparens-mode-map
("C-<right>" . sp-forward-slurp-sexp)
("C-<left>" . sp-forward-barf-sexp)
("C-M-<left>" . sp-backward-slurp-sexp)
("C-M-<right>" . sp-backward-barf-sexp))
:config
(require 'smartparens-config)
(smartparens-global-mode t)
(show-smartparens-global-mode t)
(setq sp-base-key-bindings 'paredit)
(setq sp-autoskip-closing-pair 'always)
(setq sp-hybrid-kill-entire-symbol nil)
(setq blink-matching-paren nil))
(use-package easy-kill
:ensure t
:bind
(([remap kill-ring-save] . easy-kill)
([remap mark-sexp] . easy-mark)))
(use-package whitespace-cleanup-mode
:ensure t
:config
(global-whitespace-cleanup-mode t))
(use-package whitespace
:hook (text-mode prog-mode)
:config
(setq whitespace-line-column 80) ;; limit line length
(setq whitespace-style '(face tabs empty trailing lines-tail)))
(use-package super-save
:ensure t
:config
(super-save-mode +1)
(setq super-save-auto-save-when-idle t))
(use-package volatile-highlights
:ensure t
:diminish t
:config
(volatile-highlights-mode t))
(use-package crux
:ensure t
:bind
(([remap move-beginning-of-line] . crux-move-beginning-of-line)
("C-c o" . crux-open-with)
("C-<backspace>" . crux-kill-line-backwards)
([remap kill-whole-line] . crux-kill-whole-line)))
;; nfkjbndfkb kdjbnkfjb
(use-package flyspell
:hook
((text-mode . flyspell-mode)
(prog-mode . flyspell-prog-mode))
:config
(setq ispell-program-name "aspell")
(setq ispell-dictionary "british"))
(use-package flycheck
:ensure t
:init (global-flycheck-mode))
|