diff options
author | ben <benjaminfranzke@googlemail.com> | 2010-02-25 20:24:41 +0100 |
---|---|---|
committer | ben <benjaminfranzke@googlemail.com> | 2010-02-25 20:24:41 +0100 |
commit | bd7323d84a593bfc31f0aeb112ba442886581257 (patch) | |
tree | 4202c1e515aeee77c20705d2c4925c1b0d9f029f /.config/vim/templates | |
parent | 571bdeb566dafd17ee4879db434e199d4eab00c9 (diff) | |
download | dotfiles-bd7323d84a593bfc31f0aeb112ba442886581257.tar.gz dotfiles-bd7323d84a593bfc31f0aeb112ba442886581257.tar.bz2 dotfiles-bd7323d84a593bfc31f0aeb112ba442886581257.zip |
mv vim`s runtimepath to .config/vim instead .vim
Diffstat (limited to '.config/vim/templates')
32 files changed, 157 insertions, 0 deletions
diff --git a/.config/vim/templates/changelog/change.py b/.config/vim/templates/changelog/change.py new file mode 100755 index 0000000..ea0e7ca --- /dev/null +++ b/.config/vim/templates/changelog/change.py @@ -0,0 +1,3 @@ +import datetime +print " %s; Phillip Berndt <phillip.berndt@gmail.com>:" % datetime.date.today().strftime("%d. %b %Y") +print " <++>" diff --git a/.config/vim/templates/changelog/rel b/.config/vim/templates/changelog/rel new file mode 100755 index 0000000..4a4c644 --- /dev/null +++ b/.config/vim/templates/changelog/rel @@ -0,0 +1,2 @@ +* <++> +<++> diff --git a/.config/vim/templates/html/$ b/.config/vim/templates/html/$ new file mode 100755 index 0000000..86f8609 --- /dev/null +++ b/.config/vim/templates/html/$ @@ -0,0 +1 @@ +document.getElementById("<++>").<++> diff --git a/.config/vim/templates/html/dl b/.config/vim/templates/html/dl new file mode 100755 index 0000000..c7bff2e --- /dev/null +++ b/.config/vim/templates/html/dl @@ -0,0 +1,6 @@ +<dl> + <dt><++></dt> + <dd><++></dd> + <++> +</dl> +<++> diff --git a/.config/vim/templates/html/dt b/.config/vim/templates/html/dt new file mode 100755 index 0000000..eee603e --- /dev/null +++ b/.config/vim/templates/html/dt @@ -0,0 +1,3 @@ +<dt><++></dt> +<dd><++></dd> +<++> diff --git a/.config/vim/templates/html/em b/.config/vim/templates/html/em new file mode 100755 index 0000000..53f4852 --- /dev/null +++ b/.config/vim/templates/html/em @@ -0,0 +1 @@ +<em><++></em><++> diff --git a/.config/vim/templates/html/form b/.config/vim/templates/html/form new file mode 100755 index 0000000..5985979 --- /dev/null +++ b/.config/vim/templates/html/form @@ -0,0 +1,6 @@ +<form method="<++>" action="<++>"> +<p> + <++> +</p> +</form> +<++> diff --git a/.config/vim/templates/html/html b/.config/vim/templates/html/html new file mode 100755 index 0000000..618a876 --- /dev/null +++ b/.config/vim/templates/html/html @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.1//EN" + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title><+title+></title> + <style type="text/css"> + </style> + </head> + <body> + <h1><+title+></h1> + <++> + </body> +</html> diff --git a/.config/vim/templates/html/input b/.config/vim/templates/html/input new file mode 100755 index 0000000..670e334 --- /dev/null +++ b/.config/vim/templates/html/input @@ -0,0 +1,2 @@ +<input type="<++>" name="<++>" /> +<++> diff --git a/.config/vim/templates/html/li b/.config/vim/templates/html/li new file mode 100755 index 0000000..b04522c --- /dev/null +++ b/.config/vim/templates/html/li @@ -0,0 +1,2 @@ +<li><++></li> +<++> diff --git a/.config/vim/templates/html/ol b/.config/vim/templates/html/ol new file mode 100755 index 0000000..119e490 --- /dev/null +++ b/.config/vim/templates/html/ol @@ -0,0 +1,5 @@ +<ol> + <li><++></li> + <++> +</ol> +<++> diff --git a/.config/vim/templates/html/p b/.config/vim/templates/html/p new file mode 100755 index 0000000..92cd897 --- /dev/null +++ b/.config/vim/templates/html/p @@ -0,0 +1,4 @@ +<p> + <++> +</p> +<++> diff --git a/.config/vim/templates/html/script b/.config/vim/templates/html/script new file mode 100755 index 0000000..61aab67 --- /dev/null +++ b/.config/vim/templates/html/script @@ -0,0 +1,4 @@ +<script type="text/javascript"> + <++> +</script> +<++> diff --git a/.config/vim/templates/html/ul b/.config/vim/templates/html/ul new file mode 100755 index 0000000..f65ab78 --- /dev/null +++ b/.config/vim/templates/html/ul @@ -0,0 +1,5 @@ +<ul> + <li><++></li> + <++> +</ul> +<++> diff --git a/.config/vim/templates/php/$ b/.config/vim/templates/php/$ new file mode 100755 index 0000000..86f8609 --- /dev/null +++ b/.config/vim/templates/php/$ @@ -0,0 +1 @@ +document.getElementById("<++>").<++> diff --git a/.config/vim/templates/php/dl b/.config/vim/templates/php/dl new file mode 100755 index 0000000..c7bff2e --- /dev/null +++ b/.config/vim/templates/php/dl @@ -0,0 +1,6 @@ +<dl> + <dt><++></dt> + <dd><++></dd> + <++> +</dl> +<++> diff --git a/.config/vim/templates/php/dt b/.config/vim/templates/php/dt new file mode 100755 index 0000000..eee603e --- /dev/null +++ b/.config/vim/templates/php/dt @@ -0,0 +1,3 @@ +<dt><++></dt> +<dd><++></dd> +<++> diff --git a/.config/vim/templates/php/em b/.config/vim/templates/php/em new file mode 100755 index 0000000..53f4852 --- /dev/null +++ b/.config/vim/templates/php/em @@ -0,0 +1 @@ +<em><++></em><++> diff --git a/.config/vim/templates/php/fore b/.config/vim/templates/php/fore new file mode 100755 index 0000000..5816e79 --- /dev/null +++ b/.config/vim/templates/php/fore @@ -0,0 +1,4 @@ +foreach(<++> as <++> => <++>) +{ + <++> +} diff --git a/.config/vim/templates/php/form b/.config/vim/templates/php/form new file mode 100755 index 0000000..5985979 --- /dev/null +++ b/.config/vim/templates/php/form @@ -0,0 +1,6 @@ +<form method="<++>" action="<++>"> +<p> + <++> +</p> +</form> +<++> diff --git a/.config/vim/templates/php/html b/.config/vim/templates/php/html new file mode 100755 index 0000000..618a876 --- /dev/null +++ b/.config/vim/templates/php/html @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.1//EN" + "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title><+title+></title> + <style type="text/css"> + </style> + </head> + <body> + <h1><+title+></h1> + <++> + </body> +</html> diff --git a/.config/vim/templates/php/input b/.config/vim/templates/php/input new file mode 100755 index 0000000..670e334 --- /dev/null +++ b/.config/vim/templates/php/input @@ -0,0 +1,2 @@ +<input type="<++>" name="<++>" /> +<++> diff --git a/.config/vim/templates/php/li b/.config/vim/templates/php/li new file mode 100755 index 0000000..b04522c --- /dev/null +++ b/.config/vim/templates/php/li @@ -0,0 +1,2 @@ +<li><++></li> +<++> diff --git a/.config/vim/templates/php/ol b/.config/vim/templates/php/ol new file mode 100755 index 0000000..119e490 --- /dev/null +++ b/.config/vim/templates/php/ol @@ -0,0 +1,5 @@ +<ol> + <li><++></li> + <++> +</ol> +<++> diff --git a/.config/vim/templates/php/p b/.config/vim/templates/php/p new file mode 100755 index 0000000..92cd897 --- /dev/null +++ b/.config/vim/templates/php/p @@ -0,0 +1,4 @@ +<p> + <++> +</p> +<++> diff --git a/.config/vim/templates/php/script b/.config/vim/templates/php/script new file mode 100755 index 0000000..61aab67 --- /dev/null +++ b/.config/vim/templates/php/script @@ -0,0 +1,4 @@ +<script type="text/javascript"> + <++> +</script> +<++> diff --git a/.config/vim/templates/php/ul b/.config/vim/templates/php/ul new file mode 100755 index 0000000..f65ab78 --- /dev/null +++ b/.config/vim/templates/php/ul @@ -0,0 +1,5 @@ +<ul> + <li><++></li> + <++> +</ul> +<++> diff --git a/.config/vim/templates/php/while b/.config/vim/templates/php/while new file mode 100755 index 0000000..0e6e202 --- /dev/null +++ b/.config/vim/templates/php/while @@ -0,0 +1,4 @@ +while(<++>) +{ + <++> +} diff --git a/.config/vim/templates/python/fori b/.config/vim/templates/python/fori new file mode 100755 index 0000000..4fb67c9 --- /dev/null +++ b/.config/vim/templates/python/fori @@ -0,0 +1,2 @@ +for <++> in <++>: + <++> diff --git a/.config/vim/templates/python/gtkt b/.config/vim/templates/python/gtkt new file mode 100755 index 0000000..c8a62c1 --- /dev/null +++ b/.config/vim/templates/python/gtkt @@ -0,0 +1,3 @@ +gtk.threads_enter() +<++> +gtk.threads_leave() diff --git a/.config/vim/templates/python/head b/.config/vim/templates/python/head new file mode 100755 index 0000000..5567fe9 --- /dev/null +++ b/.config/vim/templates/python/head @@ -0,0 +1,4 @@ +#!/usr/bin/env python +# vim:fileencoding=utf-8:ft=python +# + diff --git a/.config/vim/templates/tex/head b/.config/vim/templates/tex/head new file mode 100644 index 0000000..572c2d0 --- /dev/null +++ b/.config/vim/templates/tex/head @@ -0,0 +1,23 @@ +\documentclass{scrartcl} +\usepackage{graphicx} +\usepackage[utf8]{inputenc} +\usepackage[ngerman]{babel} +\usepackage[automark]{scrpage2} +\pagestyle{scrheadings} + +\ihead{<+links+>} +\chead{\pagemark} +\ohead{\headmark} +\author{Phillip Berndt} +\date{\today{}} +\title{<++>} + + +\begin{document} +\maketitle +\tableofcontents +\newpage + +\section{<++>} + +\end{document} |