Initial commit
This commit is contained in:
8
.vim/templates/markdown
Normal file
8
.vim/templates/markdown
Normal file
@@ -0,0 +1,8 @@
|
||||
:insert
|
||||
---
|
||||
layout: post
|
||||
title:
|
||||
date:
|
||||
categories:
|
||||
---
|
||||
|
||||
16
.vim/templates/md
Normal file
16
.vim/templates/md
Normal file
@@ -0,0 +1,16 @@
|
||||
:insert
|
||||
|
||||
# Title
|
||||
|
||||
Created:
|
||||
|
||||
Updated:
|
||||
|
||||
## Summary
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
## Reference(s):
|
||||
|
||||
22
.vim/templates/py
Normal file
22
.vim/templates/py
Normal file
@@ -0,0 +1,22 @@
|
||||
:insert
|
||||
#!/usr/bin/env python
|
||||
#===============================================================================
|
||||
#
|
||||
# FILE:
|
||||
#
|
||||
# USAGE:
|
||||
#
|
||||
# DESCRIPTION:
|
||||
#
|
||||
# OPTIONS:
|
||||
# REQUIREMENTS:
|
||||
# NOTES:
|
||||
# AUTHOR:
|
||||
# ORGANIZATION:
|
||||
# CREATED:
|
||||
# REVISION:
|
||||
#===============================================================================
|
||||
|
||||
set -o nounset # Treat unset variables as an error
|
||||
|
||||
.
|
||||
26
.vim/templates/sh
Normal file
26
.vim/templates/sh
Normal file
@@ -0,0 +1,26 @@
|
||||
:insert
|
||||
#!/usr/bin/env bash
|
||||
#===============================================================================
|
||||
#
|
||||
# FILE:
|
||||
# USAGE:
|
||||
# DESCRIPTION:
|
||||
# OPTIONS:
|
||||
# REQUIREMENTS:
|
||||
# NOTES:
|
||||
# AUTHOR: C Hawley
|
||||
# CREATED:
|
||||
# REVISION:
|
||||
#
|
||||
#===============================================================================
|
||||
|
||||
set -o nounset # Treat unset variables as an error
|
||||
|
||||
# Check for empty argument
|
||||
if [ -z "${1:-}" ]; then
|
||||
arg="undefined"
|
||||
else
|
||||
arg=$1
|
||||
fi
|
||||
|
||||
.
|
||||
Reference in New Issue
Block a user