From 4349aa17b6b25bd440c734196fad7996c5d28742 Mon Sep 17 00:00:00 2001 From: Bradley Date: Sun, 10 May 2020 17:14:55 -0700 Subject: [PATCH] Adding coding app info and configs. Added more environment terminal info and resources. --- linux/Coding-App-Setup.md | 11 ++++++ linux/Environment-Setup.md | 69 +++++++++++++++++++++++++++++++++- linux/Resources-Information.md | 5 ++- 3 files changed, 83 insertions(+), 2 deletions(-) create mode 100644 linux/Coding-App-Setup.md diff --git a/linux/Coding-App-Setup.md b/linux/Coding-App-Setup.md new file mode 100644 index 0000000..ad48786 --- /dev/null +++ b/linux/Coding-App-Setup.md @@ -0,0 +1,11 @@ +# Coding Applications + +## 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 + +## 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) diff --git a/linux/Environment-Setup.md b/linux/Environment-Setup.md index 3fc9d71..cacd331 100644 --- a/linux/Environment-Setup.md +++ b/linux/Environment-Setup.md @@ -1,3 +1,70 @@ # Coding Environment Setup -## +## Packages + +- Git: `sudo apt install git` +- Curl: `sudo apt install curl` + +### [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` + +## Git + +Edit .gitconfig with name and email +`git config --global.name "Your Name"` +`git config --global.email "you@example.com"` + +## Dotfiles + +Dotfiles and editor preferences: https://github.com/BradNut/dotfiles + +## 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) + -- Install: `git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z` +- [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions) + -- Install: `git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions` +- [zsh-syntax-highlighting](https://github.com/zsh-users/zsh-syntax-highlighting) + -- Install: `git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting` + +### 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) diff --git a/linux/Resources-Information.md b/linux/Resources-Information.md index 540b876..9085f1e 100644 --- a/linux/Resources-Information.md +++ b/linux/Resources-Information.md @@ -1,6 +1,7 @@ # Linux Resources -## Useful Pageackes +## Useful Packages + - Gnome Tweaks: `sudo apt install gnome-tweaks` - Fonts Fira Code: `sudo apt install fonts-firacode` - Git: `sudo apt install git` @@ -8,7 +9,9 @@ - Vim: `sudo apt install vim` ## GUI + Ubuntu 20.04 Gnome dark mode work for all except do not disturb or right click menu + - Fix is that Gnome Shell is on "Default" - Install Gnome Tweaks: `sudo apt install gnome-tweaks` - Select "Appearance" and change Shell to "Yaru-dark" or whatever you want