2020-09-16 07:16:22 +00:00
# Terminal
2020-09-22 04:53:52 +00:00
2021-02-25 01:37:09 +00:00
## HyperJS
### [Configuration](https://github.com/BradNut/dotfiles/blob/master/.hyper.js)
2022-10-31 16:31:58 +00:00
## Custom Prompt
- [Starship ](https://starship.rs/ )
- Preset [Nerd Font Symbols Preset ](https://starship.rs/presets/nerd-font.html )
- [Nerd Font ](https://www.nerdfonts.com/ ) used: Fira Code Nerd Font
2021-02-25 01:05:49 +00:00
## Vim
2020-09-22 04:53:52 +00:00
2021-02-25 01:05:49 +00:00
- Configuration: [.vimrc ](https://github.com/BradNut/dotfiles/blob/master/.vimrc )
- Install:
2021-02-25 01:27:05 +00:00
- Linux: `sudo apt install vim`
- OSX: `brew install vim`
2020-09-22 04:53:52 +00:00
2021-02-25 01:05:49 +00:00
### Things to look into for vim
2020-09-16 07:16:22 +00:00
2021-02-25 01:05:49 +00:00
- Package manager
- [Rainbow Parentheses ](https://github.com/frazrepo/vim-rainbow )
2020-09-22 04:53:52 +00:00
2021-02-25 01:05:49 +00:00
## Zsh
_Currently using zsh_
- Install if not there
2021-02-25 01:27:05 +00:00
- Linux/Ubuntu: `sudo apt install zsh`
- OSX: `brew install zsh`
2021-02-25 01:05:49 +00:00
### Configuration
- [.zshrc ](https://github.com/BradNut/dotfiles/blob/master/.zshrc )
- [Oh My Zsh ](https://ohmyzsh.sh )
2021-02-25 01:27:05 +00:00
- Install: `sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"`
2021-11-24 00:35:01 +00:00
- [.nvmrc ](https://github.com/BradNut/dotfiles/blob/master/.zshrc ) - Node Version Manager config file
2021-02-25 01:05:49 +00:00
#### Oh My Zsh Plugins
- [Z ](https://github.com/agkozak/zsh-z )
2021-02-25 01:27:05 +00:00
- Install: `git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z`
2021-02-25 01:05:49 +00:00
- [zsh-autosuggestions ](https://github.com/zsh-users/zsh-autosuggestions )
2021-02-25 01:27:05 +00:00
- Install: `git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions`
2021-02-25 01:05:49 +00:00
- [zsh-syntax-highlighting ](https://github.com/zsh-users/zsh-syntax-highlighting )
2021-02-25 01:27:05 +00:00
- Install: `git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting`
2021-02-25 01:05:49 +00:00
## Bash
- Not using at the moment
### Configuration
- [Bash profile ](https://github.com/BradNut/dotfiles/blob/master/.bash_profile )
- [.bashrc ](https://github.com/BradNut/dotfiles/blob/master/.bashrc )
## 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 ](https://docs.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent )