Minor edits.

This commit is contained in:
Derek Taylor
2020-11-05 13:27:52 -06:00
parent 8fbacc6392
commit 35112d3f8c
170 changed files with 1304 additions and 756 deletions

View File

@@ -181,18 +181,19 @@
(use-package! python-pytest
:defer t
:commands python-pytest-dispatch
:init
(map! :after python
:localleader
:map python-mode-map
:prefix ("t" . "test")
"a" #'python-pytest
"f" #'python-pytest-file-dwim
"F" #'python-pytest-file
"t" #'python-pytest-function-dwim
"T" #'python-pytest-function
"r" #'python-pytest-repeat
"p" #'python-pytest-popup))
"p" #'python-pytest-dispatch))
;;
@@ -266,6 +267,7 @@
"~/.miniconda3"
"~/anaconda3"
"~/miniconda3"
"~/opt/miniconda3"
"/usr/bin/anaconda3"
"/usr/local/anaconda3"
"/usr/local/miniconda3"
@@ -286,7 +288,9 @@
(use-package! poetry
:when (featurep! +poetry)
:after python)
:after python
:init
(add-hook 'python-mode-hook #'poetry-tracking-mode))
(use-package! cython-mode