An open API service indexing awesome lists of open source software.

https://github.com/roldanalex/personal-dev-environment-files

Personal terminal setup files
https://github.com/roldanalex/personal-dev-environment-files

iterm2 terminal tmux

Last synced: 5 months ago
JSON representation

Personal terminal setup files

Awesome Lists containing this project

README

        

# My Dev Environment Files
**IMPORTANT:** These files are my personal development environment setup. It's meant to be used as baseline. Proceed at your own risk!

# Terminal Setup
### Relevant Files
- [.zshrc](.zshrc) - Zsh Shell Configuration

# Tmux Setup
### Relevant Files
- [.tmux.conf](.tmux.conf) - Tmux Configuration File

### Setup Requires
- True Color Terminal Like: [iTerm2](https://iterm2.com/)
- [Nerd Font](https://www.nerdfonts.com/) - I use Meslo Nerd Font
- [Ripgrep](https://github.com/BurntSushi/ripgrep) - For Telescope Fuzzy Finder
- XCode Command Line Tools
- If working with typescript/javascript and the typescript language server like me. You might need to install node.

If you're on mac, like me, you can install iTerm2, Neovim, Ripgrep and Node with homebrew.
```bash
brew install --cask iterm2
```
```bash
brew install ripgrep
```
```bash
brew install node
```

For XCode Command Line Tools do:
```bash
xcode-select --install
```