summaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-12-27 16:24:47 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-12-27 16:24:47 +0000
commit84b25b7e38e36becb29c56fa9f58f56717f2d814 (patch)
treeb3600aa3c2801fc6ca05e8715ed10d922f755e1c /init.el
parent530bd977aeca63a72195d51c666bbc140af74bc0 (diff)
python-pytest package installed and Dump Jump enhanced
Diffstat (limited to 'init.el')
-rw-r--r--init.el14
1 files changed, 13 insertions, 1 deletions
diff --git a/init.el b/init.el
index 2707a12..f24b6fe 100644
--- a/init.el
+++ b/init.el
@@ -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)