-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
32 lines (27 loc) · 884 Bytes
/
init.el
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
(setq package-archives '
(
("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "http://marmalade-repo.org/packages/")
("melpa" . "http://melpa.milkbox.net/packages/")))
;;showlinenumber
(global-linum-mode 1)
;;highlightcurrentline
(global-hl-line-mode 1)
(set-frame-font "menlo 13" nil t)
(setq ac-ignore-case t)
(setq slime-default-lisp 'sbcl)
(global-set-key
(kbd "C-g") 'helm-projectile-find-file)
(setq projectile-enable-caching t)
(setq projectile-indexing-method 'native)
;;(global-wakatime-mode)
(add-to-list 'load-path "~/.emacs.d/elpa/highlight-parentheses")
(require 'highlight-parentheses)
(define-globalized-minor-mode global-highlight-parentheses-mode
highlight-parentheses-mode
(lambda
()
(highlight-parentheses-mode t)))
(global-highlight-parentheses-mode t)
;;auto revert mode
(global-auto-revert-mode)