mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 03:20:26 +10:00
Moving to Doom Emacs!
This commit is contained in:
34
.emacs.d/modules/lang/python/packages.el
Normal file
34
.emacs.d/modules/lang/python/packages.el
Normal file
@@ -0,0 +1,34 @@
|
||||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/python/packages.el
|
||||
|
||||
;; Major modes
|
||||
(package! pip-requirements)
|
||||
(when (featurep! +cython)
|
||||
(package! cython-mode)
|
||||
(when (featurep! :tools flycheck)
|
||||
(package! flycheck-cython)))
|
||||
|
||||
;; LSP
|
||||
(when (featurep! +lsp)
|
||||
(package! lsp-python-ms))
|
||||
|
||||
;; Programming environment
|
||||
(package! anaconda-mode)
|
||||
(when (featurep! :completion company)
|
||||
(package! company-anaconda))
|
||||
|
||||
;; Environment management
|
||||
(package! pipenv)
|
||||
(package! pyvenv)
|
||||
(when (featurep! +pyenv)
|
||||
(package! pyenv-mode))
|
||||
(when (featurep! +conda)
|
||||
(package! conda))
|
||||
|
||||
;; Testing frameworks
|
||||
(package! nose)
|
||||
(package! python-pytest)
|
||||
|
||||
;; Import managements
|
||||
(package! pyimport)
|
||||
(package! py-isort)
|
||||
Reference in New Issue
Block a user