mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
5 lines
189 B
Bash
5 lines
189 B
Bash
# Vim helper plugin.
|
|
# Colorize the source of a file and create a html file.
|
|
code2html() {
|
|
vim $@ +'syn on' +'set background=dark' +'colorscheme pablo' +'TOhtml' +'w' +'qa' &>/dev/null
|
|
}
|