Evitar complexidade desnecessária.
Evitar repetição de qualquer parte do sistema
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| SetCapsLockState, AlwaysOff | |
| CapsLock & ,:: Send {Del} | |
| CapsLock & .:: Send {End} | |
| CapsLock & k:: Send {Ins} |
| { | |
| "auto_complete": true, | |
| "auto_complete_delay": 50, | |
| "auto_complete_selector": "source - comment", | |
| "auto_complete_size_limit": 4194304, | |
| "auto_complete_with_fields": true, | |
| "binary_file_patterns": | |
| [ | |
| "*.jpg", | |
| "*.jpeg", |
| create_table "notifications", :force => true do |t| | |
| t.integer "notified_id", :null => false | |
| t.string "notified_type", :limit => 7, :null => false | |
| t.integer "notifier_id", :null => false | |
| t.string "notifier_type", :limit => 7, :null => false | |
| t.integer "target_id", :default => 0, :null => false | |
| t.string "target_type", :limit => 9, :default => "Undefined", :null => false | |
| t.string "target_aggregation", :default => "", :null => false | |
| t.string "action_type", :limit => 8, :null => false | |
| t.boolean "read", :default => false, :null => false |
| # ZSH | |
| ZSH=$HOME/.oh-my-zsh | |
| # PLUGIN | |
| plugins=(git) | |
| # SOURCE | |
| source $ZSH/oh-my-zsh.sh | |
| # PROMPT |