Codebase list poshc2 / c7e15d91-97a2-45e6-8749-25a330321b42/main resources / scripts / posh-config
c7e15d91-97a2-45e6-8749-25a330321b42/main

Tree @c7e15d91-97a2-45e6-8749-25a330321b42/main (Download .tar.gz)

posh-config @c7e15d91-97a2-45e6-8749-25a330321b42/mainraw · history · blame

#!/bin/bash

source /usr/local/bin/_posh-common
get_posh_project_dir

if [[ "$EDITOR" != "" ]]; then
    sudo $EDITOR "$POSH_PROJECT_DIR/config.yml"
elif [[ "$*" == *"--nano"* ]]; then
    sudo nano "$POSH_PROJECT_DIR/config.yml"
else
    sudo vim "$POSH_PROJECT_DIR/config.yml"
fi