Skip to content

Instantly share code, notes, and snippets.

View hugocore's full-sized avatar

Hugo Sequeira hugocore

View GitHub Profile
# Sublime Files
*.sublime-project
*.sublime-workspace
# Eclipse
.classpath
.project
.settings/
# Intellij
### 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 git@github.com:<username>/<repo_name>.git
$ git push -u origin master
Sublime
=========
Settings
-----------
{
"auto_complete_commit_on_tab": true,
{
"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,
@hugocore
hugocore / AndroidManifest.xml
Last active March 16, 2023 03:49
Android Deep Linking Activity
<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" />
{
"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",
// Alerts
@include alert-variant($background, $border, $text-color);
// Background Variant
@include bg-variant($parent, $color);
// Border Radius
@include border-top-radius($radius);
@include border-right-radius($radius);
@include border-bottom-radius($radius);
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"A File Icon",
"GitGutter",
"Material Theme",
bindkey "[D" backward-word
bindkey "[C" forward-word
export PATH=/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/hugosequeira/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
<real>0.19370138645172119</real>