Skip to content

Latest commit

 

History

History
75 lines (49 loc) · 2.13 KB

Terminal.md

File metadata and controls

75 lines (49 loc) · 2.13 KB

Terminal

HyperJS

Custom Prompt

Vim

  • Configuration: .vimrc
  • Install:
    • Linux: sudo apt install vim
    • OSX: brew install vim

Things to look into for vim

Zsh

Currently using zsh

  • Install if not there
    • Linux/Ubuntu: sudo apt install zsh
    • OSX: brew install zsh

Configuration

  • .zshrc
  • Oh My Zsh
    • Install: sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  • .nvmrc - Node Version Manager config file

Oh My Zsh Plugins

  • Z
    • Install: git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z
  • zsh-autosuggestions
    • Install: git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  • zsh-syntax-highlighting
    • Install: git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

Bash

  • Not using at the moment

Configuration

SSH

Enable

$ sudo apt update
$ sudo apt install openssh-server

Verify SSH is running:

$ sudo systemctl status ssh

Generating SSH Keys

Step by step: Generating New SSH Key and adding to the SSH Agent