From dd14b935cb0fb886495f8e099759844d5358ff58 Mon Sep 17 00:00:00 2001 From: James McGlashan Date: Sun, 11 Dec 2011 04:29:04 +1100 Subject: [PATCH] plugin with aliases for vim. currenly only one. although can be expanded. --- plugins/vim/vim.plugin.zsh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 plugins/vim/vim.plugin.zsh diff --git a/plugins/vim/vim.plugin.zsh b/plugins/vim/vim.plugin.zsh new file mode 100644 index 000000000..7d3002734 --- /dev/null +++ b/plugins/vim/vim.plugin.zsh @@ -0,0 +1,3 @@ +# Aliases to commands one may use with vim. +# Colorize the source of a file and create a html file. +alias code2html="vim omz -f +'syn on' +'set background=dark' +'colorscheme pablo' +'TOhtml' +'w' +'qa' &>/dev/null"