2020-01-04 22:53:01 +00:00
|
|
|
;; pylint is required (pip install pylint)
|
|
|
|
;; pep8 (pip install pep8)
|
|
|
|
;; don't use python-mode because JESUS. CHRIST. it throws everything off.
|
|
|
|
;; using jedi requires virtualenv to be installed
|
|
|
|
;; pipenv is mostly acceptable but i could not make a full IDE experience happen
|
|
|
|
|
2020-01-07 21:59:44 +00:00
|
|
|
(use-package pipenv
|
|
|
|
:ensure t)
|
2020-01-04 22:53:01 +00:00
|
|
|
|
2020-01-19 22:58:02 +00:00
|
|
|
(use-package poetry
|
|
|
|
:ensure t)
|
|
|
|
|
2020-01-07 21:59:44 +00:00
|
|
|
(use-package flycheck
|
|
|
|
:ensure t)
|
2020-01-04 22:53:01 +00:00
|
|
|
|
2020-01-07 21:59:44 +00:00
|
|
|
; Let's set up company! perhaps not necessary but this is what i like to use
|
|
|
|
(use-package company
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(setq company-idle-delay 0)
|
|
|
|
(setq company-minimum-prefix-length 1))
|
2020-01-04 22:53:01 +00:00
|
|
|
|
2020-01-07 21:59:44 +00:00
|
|
|
; install lsp mode
|
|
|
|
(use-package lsp-mode
|
|
|
|
:ensure t
|
|
|
|
:hook (python-mode . lsp-deferred)
|
|
|
|
:commands (lsp lsp-deferred))
|
2020-01-04 22:53:01 +00:00
|
|
|
|
2020-01-07 21:59:44 +00:00
|
|
|
; let's add the lsp company backend
|
|
|
|
(use-package company-lsp
|
2020-01-04 22:53:01 +00:00
|
|
|
:ensure t
|
|
|
|
:config
|
2020-01-07 21:59:44 +00:00
|
|
|
(push 'company-lsp company-backends))
|
|
|
|
|
|
|
|
; also installs lsp as a dependency
|
|
|
|
(use-package lsp-ui
|
|
|
|
:ensure t
|
|
|
|
:hook (lsp-mode . lsp-ui-mode))
|
|
|
|
|
2020-01-04 22:53:01 +00:00
|
|
|
|
|
|
|
;; (use-package pyvenv
|
|
|
|
;; :ensure t)
|
|
|
|
(use-package virtualenvwrapper
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(venv-initialize-interactive-shells) ;; if you want interactive shell support
|
|
|
|
(venv-initialize-eshell) ;; if you want eshell support
|
|
|
|
(setq venv-location "~/.local/share/virtualenvs/"))
|