-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemacs
69 lines (56 loc) · 2.23 KB
/
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
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
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
;; hola
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-enabled-themes (quote (dichromacy)))
'(package-selected-packages
(quote
(web-mode auto-complete elpy ein iedit company emmet-mode)))
'(python-shell-interpreter "python3")
'(tool-bar-mode nil))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
;; windmove
(require 'windmove)
(windmove-default-keybindings)
;; matching parenthesis
(show-paren-mode 1)
;; parenthesis autocomplete
(electric-pair-mode 1)
(setq electric-pair-preserve-balance nil)
;; auto-complete-mode
(global-auto-complete-mode t)
;; emmet-mode: Auto-start on any markup modes, from the documentation
(require 'emmet-mode)
(emmet-mode 1)
(add-hook 'sgml-mode-hook 'emmet-mode) ;; Auto-start on any markup modes
;; iedit
(require 'iedit)
;; web-mode: http://web-mode.org/
(require 'web-mode)
(setq web-mode-enable-current-element-highlight t)
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
(setq web-mode-enable-auto-pairing t)
(setq web-mode-markup-indent-offset 2)
;; set colors
(set-face-attribute 'web-mode-html-tag-face nil :foreground "black")
(set-face-attribute 'web-mode-html-tag-bracket-face nil :foreground "red")
(set-face-attribute 'web-mode-current-element-highlight-face nil :background "white smoke")
(set-face-attribute 'web-mode-current-element-highlight-face nil :foreground "black")
(set-face-attribute 'web-mode-html-attr-value-face nil :foreground "medium blue")
;;elpy for python
(require 'elpy)
(setq elpy-rpc-python-command "python3")