aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororeodave <aryadevchavali1@gmail.com>2019-07-24 12:08:42 +0100
committeroreodave <aryadevchavali1@gmail.com>2019-07-24 12:08:42 +0100
commit66f7bdeb55135fed5e3e7772a572d7a5d090cd03 (patch)
tree3f57539f69f45d0edb7b603b283d06793a09aea1
parent7557439697edecc084d4e1410fa5147e7e90b127 (diff)
downloaddotfiles-66f7bdeb55135fed5e3e7772a572d7a5d090cd03.tar.gz
dotfiles-66f7bdeb55135fed5e3e7772a572d7a5d090cd03.tar.bz2
dotfiles-66f7bdeb55135fed5e3e7772a572d7a5d090cd03.zip
~Python indenting
-rw-r--r--doom.d/config.org22
1 files changed, 12 insertions, 10 deletions
diff --git a/doom.d/config.org b/doom.d/config.org
index b2d3eac..d6d2b0d 100644
--- a/doom.d/config.org
+++ b/doom.d/config.org
@@ -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