aboutsummaryrefslogtreecommitdiff
path: root/.vim/templates
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2019-10-02 11:49:11 +0200
committerPatrick Spek <p.spek@tyil.nl>2019-10-02 11:49:11 +0200
commiteac0f1c0d14a9c3ac33cefb8eed82fe6f6ea9849 (patch)
tree15a91bb31a491a85f690ca1d5ccf2732e7a6e913 /.vim/templates
parent56bc2df958b655da811f0eb68a5063a962198b08 (diff)
Include vim configuration
Diffstat (limited to '.vim/templates')
-rw-r--r--.vim/templates/skeleton.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/.vim/templates/skeleton.sh b/.vim/templates/skeleton.sh
new file mode 100644
index 0000000..df26ef7
--- /dev/null
+++ b/.vim/templates/skeleton.sh
@@ -0,0 +1,10 @@
+#! /usr/bin/env sh
+
+BASEDIR=$(CDPATH="" cd -- "$(dirname -- "$0")" && pwd -P)
+
+main()
+{
+ # TODO
+}
+
+main "$@"