~Python indenting

This commit is contained in:
oreodave
2019-07-24 12:08:42 +01:00
parent 7557439697
commit 66f7bdeb55

View File

@@ -78,16 +78,18 @@ become my C one soon!
(setq python-shell-interpreter "python3")
(setq flycheck-python-pycompile-executable "python3")
; Python Keybinds
(map!
:map python-mode-map
:localleader
:desc "Start python minor" "c" 'run-python
(:prefix "s"
:desc "Send region REPL" "r" 'python-shell-send-region
:desc "Send buffer" "b" 'python-shell-send-buffer
:desc "Send function" "f" 'python-shell-send-defun
)
(map! ; Python keybinds
:map python-mode-map
:localleader
:desc "Start python minor" "c" 'run-python
(:prefix "s"
:desc "Send region REPL" "r" 'python-shell-send-region
:desc "Send buffer" "b" 'python-shell-send-buffer
:desc "Send function" "f" 'python-shell-send-defun
)
)
)
#+END_SRC
)
)
#+END_SRC