vim/zsh/zsh.d/50-functions.zsh

20 lines
421 B
Bash

#######################################################################################
# Functions
# cdb - Goes to folder by complete path
autoload -U cdb
# hist - Grep from history
autoload -U hist
# hdu - Human readable report of files and directories sizes
autoload -U hdu
# dust - list total size in . directory
autoload -U dust
# bak - remove backup files
autoload -U bak
# vim: set ts=4 sw=4 tw=0 ft=zsh :