dela 0.0.6

A task runner that delegates the work to other tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Basic fish configuration for testing

# Set up basic prompt
function fish_prompt
    echo -n (whoami)'@'(hostname)':'(pwd)'$ '
end

# Set up basic path
set -x PATH /usr/local/bin /usr/bin /bin $PATH

# Basic command not found handler (will be replaced by dela)
function fish_command_not_found
    echo "fish: Unknown command: $argv[1]" >&2
    return 127
end

# Allow sourcing in non-interactive mode
status --is-interactive; or status --is-login; or true