mirror of
https://github.com/BradNut/computer-setup-info
synced 2025-09-08 17:40:23 +00:00
Starting environment base folder, adding vscode info.
This commit is contained in:
parent
72d4361f5d
commit
b6eb5c285d
3 changed files with 31 additions and 16 deletions
7
environment/Terminal.md
Normal file
7
environment/Terminal.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Terminal
|
||||
## Applications
|
||||
### Hyper.js
|
||||
#### Configurations
|
||||
|
||||
### iTerm2
|
||||
#### Configurations
|
||||
|
|
@ -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
|
||||
- Packages installed: https://github.com/BradNut/dotfiles/blob/master/vs-code-extensions-i-use.md
|
||||
- Install Shell Command: Install ‘code’ command in PATH
|
||||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue