Skip to content

Instantly share code, notes, and snippets.

@sylar
Created November 14, 2019 05:58
Show Gist options
  • Save sylar/22431c8873c51ad9b01402e3f683392d to your computer and use it in GitHub Desktop.
Save sylar/22431c8873c51ad9b01402e3f683392d to your computer and use it in GitHub Desktop.
Sublime text setup
Extensions:
- Terminus
- Typescript
- Origami
- Git blame
- jsPrettier
Mouse config:
```
[
{
"button": "button1",
"count": 1,
"modifiers": ["alt"],
"command": "goto_definition"
},
// TypeScript
{
"button": "button1",
"count": 1,
"modifiers": ["alt"],
"press_command": "drag_select",
"command": "typescript_go_to_definition",
"context": [
{ "key": "selector", "operator": "equal", "operand": "source.ts, source.tsx" }
]
}
]
```
Keyboard Config:
```
[
{
"keys": ["super+`"], "command": "toggle_terminus_panel", "args": {
"cwd": "${file_path:${folder}}"
}
}
]
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment