diff --git a/environment/Terminal.md b/environment/Terminal.md new file mode 100644 index 0000000..f70faff --- /dev/null +++ b/environment/Terminal.md @@ -0,0 +1,7 @@ +# Terminal +## Applications +### Hyper.js +#### Configurations + +### iTerm2 +#### Configurations diff --git a/linux/Coding-App-Setup.md b/linux/Coding-App-Setup.md index 846f119..7afd70b 100644 --- a/linux/Coding-App-Setup.md +++ b/linux/Coding-App-Setup.md @@ -1,7 +1,6 @@ # Coding Applications ## Sublime Text 3 - - [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) @@ -13,6 +12,6 @@ - [Rainbow Brackets](https://github.com/absop/RainbowBrackets) ## VSCode - - 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 \ No newline at end of file +- Packages installed: https://github.com/BradNut/dotfiles/blob/master/vs-code-extensions-i-use.md +- Install Shell Command: Install ‘code’ command in PATH \ No newline at end of file diff --git a/linux/Environment-Setup.md b/linux/Environment-Setup.md index 11dd6ae..a9970e3 100644 --- a/linux/Environment-Setup.md +++ b/linux/Environment-Setup.md @@ -9,23 +9,35 @@ ### [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` +- 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` +``` +$ 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 +``` ## Dotfiles Dotfiles and editor preferences: https://github.com/BradNut/dotfiles ## Git -Edit .gitconfig with name and email -`git config --global.name "Your Name"` -`git config --global.email "you@example.com"` +Edit `.gitconfig` with name and email +``` +$ git config --global.name "Your Name" +$ git config --global.email "you@example.com" +``` ## Terminal @@ -40,19 +52,16 @@ Edit .gitconfig with name and email - [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) * Install: `git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z` - [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions)