73 lines
2.4 KiB
EmacsLisp
73 lines
2.4 KiB
EmacsLisp
;;; lang/python/config.el
|
|
|
|
(@def-package python
|
|
:commands python-mode
|
|
:init
|
|
(setq python-environment-directory doom-cache-dir
|
|
python-shell-interpreter "ipython"
|
|
python-shell-interpreter-args "--deep-reload"
|
|
python-shell-prompt-regexp "In \\[[0-9]+\\]: "
|
|
python-shell-prompt-block-regexp "\\.\\.\\.\\.: "
|
|
python-shell-prompt-output-regexp "Out\\[[0-9]+\\]: "
|
|
python-shell-completion-setup-code
|
|
"from IPython.core.completerlib import module_completion"
|
|
python-shell-completion-string-code
|
|
"';'.join(get_ipython().Completer.all_completions('''%s'''))\n")
|
|
|
|
(add-hook 'python-mode-hook 'flycheck-mode)
|
|
|
|
:config
|
|
(@set :repl 'python-mode '+python/repl)
|
|
(define-key python-mode-map (kbd "DEL") nil)) ; interferes with smartparens
|
|
|
|
|
|
(@def-package anaconda-mode
|
|
:after python
|
|
:init
|
|
(add-hook 'python-mode-hook 'anaconda-mode)
|
|
(add-hook 'anaconda-mode-hook 'anaconda-eldoc-mode)
|
|
(setq anaconda-mode-installation-directory (concat doom-cache-dir "anaconda/")
|
|
anaconda-mode-eldoc-as-single-line t)
|
|
|
|
:config
|
|
(@set :company-backend 'python-mode '(company-anaconda))
|
|
|
|
(@map :map anaconda-mode-map :m "gd" 'anaconda-mode-find-definitions
|
|
:map anaconda-nav-mode-map :n [escape] 'anaconda-nav-quit)
|
|
|
|
(advice-add 'anaconda-mode-doc-buffer :after 'doom*anaconda-mode-doc-buffer))
|
|
|
|
(@def-package company-anaconda
|
|
:after anaconda-mode
|
|
:config
|
|
(@set :emr 'python-mode
|
|
'(:nv anaconda-mode-show-doc "view documentation")
|
|
'(:nv anaconda-mode-find-assignments "find assignments")
|
|
'(:nv anaconda-mode-find-definitions "find definitions")
|
|
'(:nv anaconda-mode-find-file "find assignments")
|
|
'(:n anaconda-mode-find-references "show usages")))
|
|
|
|
|
|
(@def-package pip-requirements
|
|
:mode ("/requirements.txt$" . pip-requirements-mode))
|
|
|
|
|
|
(@def-package nose
|
|
:commands nose-mode
|
|
:preface
|
|
(defvar nose-mode-map (make-sparse-keymap))
|
|
:init
|
|
(@associate nose-mode :match "/test_.+\\.py$" :in (python-mode))
|
|
:config
|
|
(@set :popup "*nosetests*" :size 0.4 :noselect t)
|
|
(@set :yas-minor-mode 'nose-mode)
|
|
(@map :map nose-mode-map
|
|
:localleader
|
|
:n "tr" 'nosetests-again
|
|
:n "ta" 'nosetests-all
|
|
:n "ts" 'nosetests-one
|
|
:n "tv" 'nosetests-module
|
|
:n "tA" 'nosetests-pdb-all
|
|
:n "tO" 'nosetests-pdb-one
|
|
:n "tV" 'nosetests-pdb-module))
|
|
|