about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2018-10-02T13·56-0400
committerWilliam Carroll <wpcarro@gmail.com>2018-10-02T13·56-0400
commit9ed59566eb75f2285d965815d9b17bec34287d23 (patch)
tree7c601d00c40e9ba87e11c09f164e35a56726ce30 /configs
parente389f02007a70049195fffd5e2ab0232832f0dfb (diff)
Support Python
Adds configuration for my Python preferences.
Diffstat (limited to 'configs')
-rw-r--r--configs/shared/emacs/.emacs.d/init.el1
-rw-r--r--configs/shared/emacs/.emacs.d/snippets/python-mode/dunder-main6
-rw-r--r--configs/shared/emacs/.emacs.d/snippets/python-mode/shebang6
-rw-r--r--configs/shared/emacs/.emacs.d/snippets/python-mode/utf-85
-rw-r--r--configs/shared/emacs/.emacs.d/wpc/packages/wpc-python.el14
5 files changed, 32 insertions, 0 deletions
diff --git a/configs/shared/emacs/.emacs.d/init.el b/configs/shared/emacs/.emacs.d/init.el
index 8f0deff079ac..970f6edd1d42 100644
--- a/configs/shared/emacs/.emacs.d/init.el
+++ b/configs/shared/emacs/.emacs.d/init.el
@@ -37,6 +37,7 @@
 (require 'wpc-docker)
 (require 'wpc-lisp)
 (require 'wpc-haskell)
+(require 'wpc-python)
 (require 'wpc-nix)
 (require 'wpc-clojure)
 (require 'wpc-javascript)
diff --git a/configs/shared/emacs/.emacs.d/snippets/python-mode/dunder-main b/configs/shared/emacs/.emacs.d/snippets/python-mode/dunder-main
new file mode 100644
index 000000000000..4dd22dc0b2da
--- /dev/null
+++ b/configs/shared/emacs/.emacs.d/snippets/python-mode/dunder-main
@@ -0,0 +1,6 @@
+# -*- mode: snippet -*-
+# name: Dunder main (__main__)
+# key: mn
+# --
+if __name__ == "__main__":
+    main()
\ No newline at end of file
diff --git a/configs/shared/emacs/.emacs.d/snippets/python-mode/shebang b/configs/shared/emacs/.emacs.d/snippets/python-mode/shebang
new file mode 100644
index 000000000000..0f45ae782d32
--- /dev/null
+++ b/configs/shared/emacs/.emacs.d/snippets/python-mode/shebang
@@ -0,0 +1,6 @@
+# -*- mode: snippet -*-
+# name: shebang
+# key: shb
+# --
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
diff --git a/configs/shared/emacs/.emacs.d/snippets/python-mode/utf-8 b/configs/shared/emacs/.emacs.d/snippets/python-mode/utf-8
new file mode 100644
index 000000000000..3babc730305a
--- /dev/null
+++ b/configs/shared/emacs/.emacs.d/snippets/python-mode/utf-8
@@ -0,0 +1,5 @@
+# -*- mode: snippet -*-
+# name: utf-8
+# key: utf
+# --
+# -*- coding: utf-8 -*-
\ No newline at end of file
diff --git a/configs/shared/emacs/.emacs.d/wpc/packages/wpc-python.el b/configs/shared/emacs/.emacs.d/wpc/packages/wpc-python.el
new file mode 100644
index 000000000000..75f95ec6a211
--- /dev/null
+++ b/configs/shared/emacs/.emacs.d/wpc/packages/wpc-python.el
@@ -0,0 +1,14 @@
+;;; wpc-python.el --- Hosts python tooling preferences -*- lexical-binding: t -*-
+;; Author: William Carroll <wpcarro@gmail.com>
+
+;;; Commentary:
+;; Python tooling for work, life, etc.
+
+;;; Code:
+(use-package lsp-python
+  :config
+  (general-add-hook 'python-mode-hook #'lsp-python-enable)
+  (general-add-hook 'before-save-hook #'lsp-format-buffer))
+
+(provide 'wpc-python)
+;;; wpc-python.el ends here