From 9ed59566eb75f2285d965815d9b17bec34287d23 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 2 Oct 2018 09:56:30 -0400 Subject: Support Python Adds configuration for my Python preferences. --- configs/shared/emacs/.emacs.d/init.el | 1 + .../shared/emacs/.emacs.d/snippets/python-mode/dunder-main | 6 ++++++ configs/shared/emacs/.emacs.d/snippets/python-mode/shebang | 6 ++++++ configs/shared/emacs/.emacs.d/snippets/python-mode/utf-8 | 5 +++++ configs/shared/emacs/.emacs.d/wpc/packages/wpc-python.el | 14 ++++++++++++++ 5 files changed, 32 insertions(+) create mode 100644 configs/shared/emacs/.emacs.d/snippets/python-mode/dunder-main create mode 100644 configs/shared/emacs/.emacs.d/snippets/python-mode/shebang create mode 100644 configs/shared/emacs/.emacs.d/snippets/python-mode/utf-8 create mode 100644 configs/shared/emacs/.emacs.d/wpc/packages/wpc-python.el 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 + +;;; 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 -- cgit 1.4.1