diff options
author | William Carroll <wpcarro@gmail.com> | 2018-10-02T13·56-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-10-02T13·56-0400 |
commit | 9ed59566eb75f2285d965815d9b17bec34287d23 (patch) | |
tree | 7c601d00c40e9ba87e11c09f164e35a56726ce30 /configs/shared/emacs/.emacs.d/snippets/python-mode/shebang | |
parent | e389f02007a70049195fffd5e2ab0232832f0dfb (diff) |
Support Python
Adds configuration for my Python preferences.
Diffstat (limited to 'configs/shared/emacs/.emacs.d/snippets/python-mode/shebang')
-rw-r--r-- | configs/shared/emacs/.emacs.d/snippets/python-mode/shebang | 6 |
1 files changed, 6 insertions, 0 deletions
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 -*- |