Starting environment base folder, adding vscode info.

This commit is contained in:
Bradley 2020-09-16 00:16:22 -07:00
parent 72d4361f5d
commit b6eb5c285d
3 changed files with 31 additions and 16 deletions

7
environment/Terminal.md Normal file
View file

@ -0,0 +1,7 @@
# Terminal
## Applications
### Hyper.js
#### Configurations
### iTerm2
#### Configurations

View file

@ -1,7 +1,6 @@
# Coding Applications # Coding Applications
## Sublime Text 3 ## Sublime Text 3
- [Install](https://flathub.org/apps/details/com.sublimetext.three): `flatpak install flathub com.sublimetext.three` - [Install](https://flathub.org/apps/details/com.sublimetext.three): `flatpak install flathub com.sublimetext.three`
- [Configuration](https://github.com/BradNut/dotfiles/blob/master/Preferences.sublime-settings) - [Configuration](https://github.com/BradNut/dotfiles/blob/master/Preferences.sublime-settings)
@ -13,6 +12,6 @@
- [Rainbow Brackets](https://github.com/absop/RainbowBrackets) - [Rainbow Brackets](https://github.com/absop/RainbowBrackets)
## VSCode ## VSCode
- Configuration: [vscode.js](https://github.com/BradNut/dotfiles/blob/master/vscode.js) - Configuration: [vscode.js](https://github.com/BradNut/dotfiles/blob/master/vscode.js)
- Packages installed: https://github.com/BradNut/dotfiles/blob/master/vs-code-extensions-i-use.md - Packages installed: https://github.com/BradNut/dotfiles/blob/master/vs-code-extensions-i-use.md
- Install Shell Command: Install code command in PATH

View file

@ -9,23 +9,35 @@
### [Linux Brew](https://docs.brew.sh/Homebrew-on-Linux) ### [Linux Brew](https://docs.brew.sh/Homebrew-on-Linux)
- Install: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"` - Install:
- Run for Debian or Ubuntu: `sudo apt-get install build-essential curl file git` ```
/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) #### Adding Homebrew to your PATH and bash shell (If applicable)
```
- `test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)` $ test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)
- `test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.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` If using bash:
```
$ test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile
$ echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile
```
## Dotfiles ## Dotfiles
Dotfiles and editor preferences: https://github.com/BradNut/dotfiles Dotfiles and editor preferences: https://github.com/BradNut/dotfiles
## Git ## Git
Edit .gitconfig with name and email Edit `.gitconfig` with name and email
`git config --global.name "Your Name"` ```
`git config --global.email "you@example.com"` $ git config --global.name "Your Name"
$ git config --global.email "you@example.com"
```
## Terminal ## Terminal
@ -40,19 +52,16 @@ Edit .gitconfig with name and email
- [Rainbow Parentheses](https://github.com/frazrepo/vim-rainbow) - [Rainbow Parentheses](https://github.com/frazrepo/vim-rainbow)
### Zsh ### Zsh
Currently using zsh. Currently using zsh.
- Install if not there: `sudo apt install zsh` - Install if not there: `sudo apt install zsh`
#### Configuration #### Configuration
- [.zshrc](https://github.com/BradNut/dotfiles/blob/master/.zshrc) - [.zshrc](https://github.com/BradNut/dotfiles/blob/master/.zshrc)
- [Oh My Zsh](https://ohmyzsh.sh) - [Oh My Zsh](https://ohmyzsh.sh)
-- Install: `sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"` -- Install: `sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"`
##### Oh My Zsh Plugins ##### Oh My Zsh Plugins
- [Z](https://github.com/agkozak/zsh-z) - [Z](https://github.com/agkozak/zsh-z)
* Install: `git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z` * Install: `git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z`
- [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions) - [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions)