Moves includes into includes folder

This commit is contained in:
Jonathan Hodgson 2020-02-19 12:07:52 +00:00
parent 3933e1b17b
commit c9291ffcbf
45 changed files with 19 additions and 5229 deletions

View file

@ -0,0 +1,13 @@
#!/usr/bin/env zsh
function append_date() {
# Prepend "info" to the command line and run it.
BUFFER="$BUFFER-$(date '+%Y-%m-%d')"
zle end-of-line
}
# Define a widget called "run_info", mapped to our function above.
zle -N append_date
# Bind it to ESC-i.
#bindkey "" append_date