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
{ | |
"always_prompt_for_file_reload": false, | |
"always_show_minimap_viewport": true, | |
"animation_enabled": true, | |
"atomic_save": true, | |
"auto_close_tags": true, | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": false, | |
"auto_complete_delay": 50, | |
"auto_complete_selector": "source - comment, meta.tag - punctuation.definition.tag.begin", |
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
<activity | |
android:name="com.your.app.activity.ParseDeepLinkActivity" | |
android:alwaysRetainTaskState="true" | |
android:launchMode="singleTask" | |
android:noHistory="true" | |
android:theme="@android:style/Theme.Translucent.NoTitleBar"> | |
<intent-filter android:autoVerify="true"> | |
<data android:scheme="http" android:host="yourdomain.com" /> | |
<data android:scheme="https" android:host="yourdomain.com" /> |
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
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 50, | |
"auto_indent": true, | |
"auto_match_enabled": true, | |
"bold_folder_labels": true, | |
"caret_style": "smooth", | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
"detect_indentation": true, |
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
Sublime | |
========= | |
Settings | |
----------- | |
{ | |
"auto_complete_commit_on_tab": true, |
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
### Git commands | |
* Init a git/github repo, avoiding the user/password request issue | |
$ git init | |
$ git add . | |
$ git commit -m "Initial commit" | |
# Create Github repo | |
$ git remote add origin [email protected]:<username>/<repo_name>.git | |
$ git push -u origin master |
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
# Sublime Files | |
*.sublime-project | |
*.sublime-workspace | |
# Eclipse | |
.classpath | |
.project | |
.settings/ | |
# Intellij |
NewerOlder