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 sublime, sublime_plugin | |
| class ChainCommand(sublime_plugin.WindowCommand): | |
| def run(self, commands): | |
| for command in commands: | |
| self.window.run_command(command[0], *command[1:]) |
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
| alias ll='ls -gohlat --show-control-chars -F --color $*' | |
| alias rmall='rm -rf ..?* .[!.]* *' | |
| alias lan='laravel new $*' | |
| alias art='php artisan $*' | |
| alias gst='git status' | |
| alias gad='git add .' | |
| alias gco='git commit -m $*' | |
| alias gch='git checkout $*' | |
| alias gdi='git diff $*' |
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
| [user] | |
| name = Nandor Dudas | |
| email = x.rep.zm@gmail.com | |
| [core] | |
| autocrlf = true | |
| safecrlf = false |
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
| # generated by Git for Windows | |
| test -f ~/.profile && . ~/.profile | |
| test -f ~/.bashrc && . ~/.bashrc |
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
Show hidden characters
| { | |
| "folders": | |
| [ | |
| { | |
| "path": "C:/...", | |
| "name": "Example Project", | |
| "follow_symlinks": true | |
| } | |
| ], | |
| "settings": |
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_show_minimap_viewport": true, | |
| "caret_extra_bottom": 1, | |
| "caret_extra_top": 1, | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_options": | |
| [ | |
| "gray_antialias", | |
| "subpixel_antialias" | |
| ], |
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.log_commands(True) | |
| [ | |
| { "keys": ["ctrl+k", "ctrl+m"], "command": "toggle_menu" }, | |
| { "keys": ["ctrl+k", "ctrl+s"], "command": "toggle_status_bar" }, | |
| { "keys": ["ctrl+alt+l"], "command": "toggle_setting", "args": { "setting": "line_numbers" } }, | |
| // Use chain.py plugin | |
| { "keys": ["ctrl+alt+z"], "command": "chain", "args": { "commands": [["toggle_tabs"], ["toggle_show_open_files"]] } }, | |
| { "keys": ["ctrl+keypad_divide"],"command": "toggle_comment", "args": { "block": false } }, | |
| { "keys": ["ctrl+shift+keypad_divide"],"command": "toggle_comment", "args": { "block": true } }, | |
| // PHPCompanion settings |