Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. From the command line, install nvm.

    Code Block
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
  2. Create a copy of your current .bash_profile to create .zprofile.
  3. In the file .zprofile, add the following code before: source ~/.mgnl/mgnl

    Code Block
    languagebash
    export NVM_DIR="$HOME/.nvm"[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
    [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
    
    source ~/.mgnl/mgnl
  4. In the file .zshrc, add the following:

    Code Block
    languagebash
    autoload bashcompinit && bashcompinit
  5. Optional: Display the username, machine name and path at the prompt. In the file .zshrc, add the following:

    Code Block
    languagebash
    export PS1="%n@%m %d %% "
    Code Block
    languagebash
    titleResult
    Last login: Thu Jan  2 23:25:56 on ttys000
    rgange@florida /Users/rgange %