computer-setup-info/environment/Terminal.md
2021-02-24 17:24:09 -08:00

1.8 KiB

Terminal

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)"

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