├── LICENSE ├── README.md ├── Screenshot.png └── ScreenshotNew.png /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Felix Krause 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # What terminal is Felix using 2 | 3 | 4 | 5 | 6 | Since I get asked this *every time* I tweet a picture of one of my tools, here's some information about how I set up my terminal: 7 | 8 | - I use [iTerm2](https://www.iterm2.com/) instead of the Stock terminal Mac app 9 | - I use [oh-my-zshell](https://github.com/robbyrussell/oh-my-zsh) 10 | - I use [rbenv](https://github.com/rbenv/rbenv) and [rvm](https://rvm.io/) (on different computers - please only install one of them) 11 | - I use [Solarized Dark](http://ethanschoonover.com/solarized) for the terminal colors 12 | - I use [powerline-shell](https://github.com/milkbikis/powerline-shell) to get those cool path bars. I usually hide the host name and the user, before running `python ./setup.py install`, edit the config file and comment out `username`, `hostname`. 13 | - `cd ~/.oh-my-zsh/` 14 | - `mkdir felix` 15 | - `cd felix` 16 | - `git clone https://github.com/b-ryan/powerline-shell` 17 | - `cd powerline-shell` 18 | - `sudo python setup.py install` 19 | - I use the [Meslo Powerline Font](https://github.com/powerline/fonts/blob/master/Meslo%20Slashed/Meslo%20LG%20M%20Regular%20for%20Powerline.ttf) as you need a font that supports the directory characters for `powerline` 20 | - I use [z](https://github.com/rupa/z) an amazing tool to quickly jump between projects. Like [Alfred](https://www.alfredapp.com/) but for your Terminal reduced to folder search only 21 | - [Install Powerlevel10](https://github.com/romkatv/powerlevel10k#oh-my-zsh) 22 | - I use the `subl .` command a lot to quickly open a specific folder in Sublime Text. This is what I use to edit my `fastlane` configuration 23 | - `echo "gem: --no-document" >> ~/.gemrc` to stop installing docs every time you install a gem 24 | - I use `o .` or `o filename.js` to open files (see [KrauseFx/dotfiles](https://github.com/KrauseFx/dotfiles)) 25 | - Settings -> Profiles -> Keys -> Load Preset -> Natural Text Editing 26 | - Enable the `Show proxy icon in window title bar` option to show the folder on the window title bar for right click and drag & drop gestures 27 | - `Profiles` -> `Advanced` -> `Semantic History` -> `Open with editor...` -> `Sublime Text 3` 28 | - `Keys` -> Replace `Cycle Tabs ...` with `Next Tab` and `Previous Tab` 29 | 30 | ---- 31 | 32 | Also, check out [KrauseFx/dotfiles](https://github.com/KrauseFx/dotfiles) for the dot files I'm using 🚀 33 | 34 | ---- 35 | -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrauseFx/what-terminal-is-felix-using/33b33750efc58377687adec08f827857698e304d/Screenshot.png -------------------------------------------------------------------------------- /ScreenshotNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrauseFx/what-terminal-is-felix-using/33b33750efc58377687adec08f827857698e304d/ScreenshotNew.png --------------------------------------------------------------------------------