Initial commit

This commit is contained in:
Chuck Hawley (chawley/shawshank)
2017-10-10 16:53:19 -04:00
parent 54b83247e7
commit 029cee5f7c
19 changed files with 2950 additions and 1 deletions

2503
.vim/autoload/plug.vim Normal file

File diff suppressed because it is too large Load Diff

Submodule .vim/plugged/syntastic added at 08adf11e81

1
.vim/plugged/tabular Submodule

Submodule .vim/plugged/tabular added at 00e1e7fcdb

Submodule .vim/plugged/vim-colorschemes added at eab315701f

Submodule .vim/plugged/vim-commentary added at 89f43af186

Submodule .vim/plugged/vim-mucomplete added at 8e1ddf51f4

Submodule .vim/plugged/vim-pandoc-syntax added at 56e8e41ef8

Submodule .vim/plugged/vim-polyglot added at 27903c5b86

Submodule .vim/plugged/vim-sensible added at 49ee364222

51
.vim/spell/en.utf-8.add Normal file
View File

@@ -0,0 +1,51 @@
Hadoop
MapReduce
HDFS
HQL
ODBC
PHP
etc
java
Offline
SQL
i.e.
sqoop
offline
Cuyahoga
Ubuntu
Debian
CentOS
online
Dialogue
Pantek
szechuan
IRC
Facebook
Royalton
Hadoop
MapReduce
HDFS
HQL
ODBC
PHP
etc
java
Offline
SQL
i.e.
sqoop
offline
Cuyahoga
Ubuntu
Debian
CentOS
online
Dialogue
Pantek
szechuan
IRC
Facebook
Royalton
blogspot
http
dotfiles

BIN
.vim/spell/en.utf-8.add.spl Normal file

Binary file not shown.

8
.vim/templates/markdown Normal file
View File

@@ -0,0 +1,8 @@
:insert
---
layout: post
title:
date:
categories:
---

16
.vim/templates/md Normal file
View File

@@ -0,0 +1,16 @@
:insert
# Title
Created:
Updated:
## Summary
---
## Reference(s):

22
.vim/templates/py Normal file
View 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
View 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
.