Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 787 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 787 Bytes

Checklist

  1. Setup SSH Keys

  2. Install Git

  3. Bootstrap

    $ ./bootstrap.sh
    
  4. Setup Nord Terminal Theme

  5. Install Tmux Plugins

    $ tmux
    Ctrl-b I
    
  6. Install Vim Plugs

    $ vim
    :PlugInstall
    
  7. Set Git Config

    $ git config --global user.email [email protected]
    $ git config --global user.name "Joshua Taylor Eppinette"
    

FAQ

I am getting an error from compinit on each new terminal window. What should I do?

First, determine the list of directories that need to have their security level increased:

$ compaudit

Second, recursively update the permissions of those directories:

$ sudo chmod -R 755 <eg:/usr/local/share>