- Download iTerm2 3.1 beta version (https://iterm2.com/downloads/beta/iTerm2-3_1_beta_8.zip)
- Use Dracula theme for iTerm2 https://draculatheme.com/iterm/
- Install oh-my-zsh https://github.com/robbyrussell/oh-my-zsh
- Install Dracula there for zsh https://draculatheme.com/zsh/
- Set pane margins:
iTerm2 -> Preferences -> Advanced
General
section
- Set
Width of left and right margins in terminal panes
to 12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Provider } from 'mobx-react/native'; | |
const SPECIAL_REACT_KEYS = { children: true, key: true, ref: true }; | |
export default class MobxRnnProvider extends Provider { | |
props: { | |
store: Object | |
}; | |
context: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check if a GitHub URL is provided as an argument | |
if [ -z "$1" ]; then | |
echo "Usage: $0 <github_url>" | |
exit 1 | |
fi | |
# Store the GitHub URL | |
GIT_URL="$1" |
OlderNewer