2020-05-09 00:20:14 +00:00
# Coding Environment Setup
2020-05-11 00:14:55 +00:00
## Packages
- Git: `sudo apt install git`
- Curl: `sudo apt install curl`
2020-05-14 18:14:34 +00:00
- Docker: [Ubuntu Install ](https://docs.docker.com/engine/install/ubuntu/#prerequisites )
- [Install instructions ](../master/linux/Docker-Setup.md )
2020-05-11 00:14:55 +00:00
### [Linux Brew](https://docs.brew.sh/Homebrew-on-Linux)
- Install: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"`
- Run for Debian or Ubuntu: `sudo apt-get install build-essential curl file git`
#### Adding Homebrew to your PATH and bash shell (If applicable)
- `test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)`
- `test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)`
- If using bash: `test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile`
- `echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile`
2020-09-07 22:12:54 +00:00
## Dotfiles
Dotfiles and editor preferences: https://github.com/BradNut/dotfiles
2020-05-11 00:14:55 +00:00
2020-09-07 22:12:54 +00:00
## Git
2020-05-11 00:14:55 +00:00
Edit .gitconfig with name and email
`git config --global.name "Your Name"`
`git config --global.email "you@example.com"`
## Terminal
### Vim
- If not installed: `sudo apt install vim`
- Configuration: [.vimrc ](https://github.com/BradNut/dotfiles/blob/master/.vimrc )
#### Things to look into for vim
- Package manager
- [Rainbow Parentheses ](https://github.com/frazrepo/vim-rainbow )
### Zsh
Currently using zsh.
- Install if not there: `sudo apt install zsh`
#### Configuration
- [.zshrc ](https://github.com/BradNut/dotfiles/blob/master/.zshrc )
- [Oh My Zsh ](https://ohmyzsh.sh )
-- Install: `sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"`
##### Oh My Zsh Plugins
- [Z ](https://github.com/agkozak/zsh-z )
2020-05-13 21:50:18 +00:00
* Install: `git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z`
2020-05-11 00:14:55 +00:00
- [zsh-autosuggestions ](https://github.com/zsh-users/zsh-autosuggestions )
2020-05-13 21:50:18 +00:00
* Install: `git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions`
2020-05-11 00:14:55 +00:00
- [zsh-syntax-highlighting ](https://github.com/zsh-users/zsh-syntax-highlighting )
2020-05-13 21:50:18 +00:00
* Install: `git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting`
2020-05-11 00:14:55 +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 )
2020-09-07 22:12:54 +00:00
## 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 )