fish/functions/epp.fish @ c5baf9bfb3fb

Remove firenvim
author Steve Losh <steve@stevelosh.com>
date Thu, 17 Mar 2022 09:58:45 -0400
parents 844194673385
children (none)
function epp -d "Edit personal .plan"
    switch (hostname)
    case alephnull
        cd ~/.personal-plan
    case '*'
        cd ~/.plan
    end

    hg pull -u
    nvim README.markdown
    hg ci -m 'Update'
    hg pa
    cd -
end