-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
39 lines (29 loc) · 929 Bytes
/
Copy pathinit.el
File metadata and controls
39 lines (29 loc) · 929 Bytes
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
;;; add by wky
(menu-bar-mode -1)
(global-hl-line-mode 1)
(fset 'yes-or-no-p 'y-or-n-p)
(setq-default auto-save-default nil
make-backup-files nil
linum-format "%4d "
ediff-forward-word-function 'forward-char
diff-switches "-u")
;;; (setq-default default-case-fold-search nil) ;;; :set ignorecase
;; (set-face-background 'hl-line "color-19")
(set-face-background 'hl-line "blue")
(set-face-foreground 'hl-line "white")
;; (set-face-background 'region "color-160")
(set-face-background 'region "red")
(set-face-foreground 'region "white")
;;; config melpa
(require 'package)
(add-to-list
'package-archives
'("melpa" . "http://melpa.org/packages/")
t)
(package-initialize)
(window-numbering-mode)
(global-undo-tree-mode)
;;; keys binding
; (global-set-key (kbd "C-SPC") nil)
; (global-set-key (kbd "C-@") 'set-mark-command)
(put 'upcase-region 'disabled nil)