mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
8 lines
222 B
Bash
8 lines
222 B
Bash
# Vim helper plugin.
|
|
# Aliases
|
|
alias svim='sudo vim'
|
|
|
|
# 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
|
|
}
|