Skip to content

Instantly share code, notes, and snippets.

@AidasK
AidasK / sublimetext-keybindings.json
Created August 16, 2023 13:01
IntelliJ IDEA/PHPStorm MacOS keybindings for SublimeText
[
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["super+delete"], "command": "delete_line" },
{ "keys": ["shift+alt+up"], "command": "swap_line_up" },
{ "keys": ["shift+alt+down"], "command": "swap_line_down" },
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol", "extend": false} }
]
@AidasK
AidasK / .git-config
Created April 2, 2024 12:47
Working with multiple github users on different projects
// .git/config file example, update each project
[remote "origin"]
url = git@gitlab.com-CUSTOMUSER:repo-namespace/reponame.git
fetch = +refs/heads/*:refs/remotes/origin/*