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
- Host: GitHub
- URL: https://github.com/roldanalex/personal-dev-environment-files
- Owner: roldanalex
- Created: 2022-11-28T04:18:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-28T23:42:53.000Z (over 2 years ago)
- Last Synced: 2024-08-13T07:15:47.722Z (8 months ago)
- Topics: iterm2, terminal, tmux
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - roldanalex/personal-dev-environment-files - Personal terminal setup files (Shell)
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
```