-
Notifications
You must be signed in to change notification settings - Fork 0
/
.emacs
27 lines (22 loc) · 926 Bytes
/
.emacs
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
(require 'package)
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/"))
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(add-to-list 'package-archives '("melpa-stable" . "http://stable.melpa.org/packages/"))
(setq package-enable-at-startup nil)
(package-initialize)
(load-theme 'misterioso t)
; (require 'package)
; (push '("marmalade" . "http://marmalade-repo.org/packages/")
; package-archives )
; (push '("melpa" . "http://melpa.milkbox.net/packages/")
; package-archives)
; (package-initialize)
; (require 'evil)
; (evil-mode 0)
; (setq evil-emacs-state-cursor '("red" box))
; (setq evil-normal-state-cursor '("green" box))
; (setq evil-visual-state-cursor '("orange" box))
; (setq evil-insert-state-cursor '("red" bar))
; (setq evil-replace-state-cursor '("red" bar))
; (setq evil-operator-state-cursor '("red" hollow))
; (load-theme 'misterioso t)