Skip to content

Instantly share code, notes, and snippets.

View herrera-ignacio's full-sized avatar
💻
Hacking

Nacho Herrera herrera-ignacio

💻
Hacking
View GitHub Profile
@herrera-ignacio
herrera-ignacio / iterm2.md
Created March 16, 2020 02:02 — forked from squarism/iterm2.md
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
New Tab + T
Close Tab or Window + W (same as many mac apps)
Go to Tab + Number Key (ie: ⌘2 is 2nd tab)
Go to Split Pane by Direction + Option + Arrow Key
Cycle iTerm Windows + backtick (true of all mac apps and works with desktops/mission control)
@herrera-ignacio
herrera-ignacio / python_virtualenv.md
Last active July 16, 2019 00:53 — forked from frfahim/install virtualenv ubuntu 16.04.md
How to install Python's virtual environment

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo -H pip3 install virtualenv