diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-27 16:24:47 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-27 16:24:47 +0000 |
commit | 84b25b7e38e36becb29c56fa9f58f56717f2d814 (patch) | |
tree | b3600aa3c2801fc6ca05e8715ed10d922f755e1c /init.el | |
parent | 530bd977aeca63a72195d51c666bbc140af74bc0 (diff) |
python-pytest package installed and Dump Jump enhanced
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -272,7 +272,14 @@ ;; Dump Jump (use-package dumb-jump - :bind ("C-M-." . dumb-jump-go)) + :bind (("M-g o" . dumb-jump-go-other-window) + ("M-g j" . dumb-jump-go) + ("M-g b" . dumb-jump-back) + ("M-g i" . dumb-jump-go-prompt) + ("M-g x" . dumb-jump-go-prefer-external) + ("M-g z" . dumb-jump-go-prefer-external-other-window)) + :config (setq dumb-jump-selector 'ivy) + :ensure) ;; GUI stuff (scroll-bar-mode -1) @@ -709,6 +716,11 @@ (setq elpy-modules (delq 'elpy-module-flymake elpy-modules)) (add-hook 'elpy-mode-hook 'flycheck-mode))) +(use-package python-pytest + :bind + ("C-c ESC t" . python-pytest-popup) + ) + ;; Go programming (use-package lsp-mode :hook (go-mode . lsp-deferred) |