diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-20 17:34:43 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-11-20 17:34:43 +0100 |
commit | accc80370b1c01caad2d0f2dd959968230f0ef5c (patch) | |
tree | 5dd782270c23de78c495aa41011f97c9035bf431 /.local/bin | |
parent | Added very usefull alias (diff) | |
download | dotfiles-bsd-accc80370b1c01caad2d0f2dd959968230f0ef5c.tar.gz dotfiles-bsd-accc80370b1c01caad2d0f2dd959968230f0ef5c.tar.bz2 dotfiles-bsd-accc80370b1c01caad2d0f2dd959968230f0ef5c.tar.xz dotfiles-bsd-accc80370b1c01caad2d0f2dd959968230f0ef5c.tar.zst dotfiles-bsd-accc80370b1c01caad2d0f2dd959968230f0ef5c.zip |
Added script to add commented date in vim
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/vimdate | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.local/bin/vimdate b/.local/bin/vimdate new file mode 100755 index 0000000..9d9046e --- /dev/null +++ b/.local/bin/vimdate @@ -0,0 +1,6 @@ +#!/usr/local/bin/dash + +printf ' * ' +date "+%y-%m-%d %H:%M" + +# vim: filetype=sh |