about summary refs log tree commit diff
path: root/configs/shared/emacs/.emacs.d/snippets
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/shared/emacs/.emacs.d/snippets
parente389f02007a70049195fffd5e2ab0232832f0dfb (diff)
Support Python
Adds configuration for my Python preferences.
Diffstat (limited to 'configs/shared/emacs/.emacs.d/snippets')
-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
3 files changed, 17 insertions, 0 deletions
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