]> git.rmz.io Git - dotfiles.git/blob - zsh/lib/motd.zsh
vim: bring back vinfo plugin
[dotfiles.git] / zsh / lib / motd.zsh
1 autoload colors; colors;
2
3 short()
4 {
5 print "$fg_bold[white]$1$reset_color $2"
6 }
7
8 msg()
9 {
10 print "$fg_bold[white]$1$reset_color\n$2\n"
11 }
12
13 # 44 seems to be the number of color escape characters used by grep
14 todo | cut -c-$((COLUMNS + 44))