diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-12-31 11:44:36 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-12-31 11:45:02 -0500 |
commit | 99a9f076d0cf5ae7357f7e21a2a5e52cf6e98456 (patch) | |
tree | 4ecf57afd9848ed4094ea46289875117c2a39c32 | |
parent | d82f837f7eb3b283b21df27c3891e8ae55fb66f1 (diff) | |
download | emacs.d-99a9f076d0cf5ae7357f7e21a2a5e52cf6e98456.tar.gz |
Update some variable values for Debian switch
-rw-r--r-- | init.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1650,7 +1650,7 @@ (define-key km/external-map "d" 'km/diff-prefix-map) (define-key km/diff-prefix-map "d" #'diff) :config - (setq diff-command "/bin/diff" + (setq diff-command "/usr/bin/diff" diff-switches "-u")) (use-package diff-mode @@ -1953,7 +1953,7 @@ :config (setq python-fill-docstring-style 'pep-257-nn python-indent-guess-indent-offset nil) - (setq python-shell-interpreter "ipython" + (setq python-shell-interpreter "ipython3" python-shell-interpreter-args "--simple-prompt --pprint" python-shell-completion-native-enable nil python-shell-prompt-detect-enabled nil) @@ -1967,7 +1967,7 @@ (setq outline-level #'km/python-outline-level) ;; Stop semantic from taking over imenu. (setq imenu-create-index-function #'python-imenu-create-index) - (set (make-local-variable 'compile-command) "py.test")) + (set (make-local-variable 'compile-command) "pytest-3")) (add-hook 'python-mode-hook #'km/python-set-local-vars) (bind-keys :map python-mode-map |