-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypython.el
33 lines (28 loc) · 1.08 KB
/
mypython.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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;functions
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;packages setting
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'smartparens-config)
(add-hook 'python-mode-hook #'smartparens-mode)
(require 'hungry-delete)
(global-hungry-delete-mode)
(elpy-enable)
;;enable autopep8 formatting on save
(require 'py-autopep8)
(add-hook 'python-mode-hook 'py-autopep8-enable-on-save)
(setq py-autopep8-options '("-a" "-a"))
;;hide show code
(add-hook 'python-mode-hook 'hs-minor-mode)
;;aggressive indent
;;(require 'aggressive-indent)
;;(add-hook 'python-mode-hook #'aggressive-indent-mode)
;;sidebar
;;(setq imenu-list-focus-after-activation t)
;;(setq imenu-list-auto-resize t)
;;(setq imenu-list-size 0.15)
;;(setq imenu-list-position 'right)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;other setting
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;