Skip to content

Instantly share code, notes, and snippets.

@fikryfahrezy
Created November 7, 2021 02:40
Show Gist options
  • Save fikryfahrezy/2249baa3e44c3f006003588ff90f7327 to your computer and use it in GitHub Desktop.
Save fikryfahrezy/2249baa3e44c3f006003588ff90f7327 to your computer and use it in GitHub Desktop.
## Settings
```json
{
"vintage_start_in_command_mode": true,
"vintage_use_clipboard": true,
"vintage_ctrl_keys": true,
"ignored_packages": [],
}
```
## Key Bindings
```json
[
{
"keys": ["j", "k"],
"command": "exit_insert_mode",
"context": [
{
"key": "setting.command_mode",
"operand": false,
},
{
"key": "setting.is_widget",
"operand": false,
},
],
},
{
"keys": ["h"],
"command": "move",
"args": {
"by": "characters",
"forward": false,
},
"context":[
{
"key": "control",
"operand": "sidebar_tree",
},
],
},
{
"keys": ["j"],
"command": "move",
"args": {
"by": "lines",
"forward": true,
},
"context": [
{
"key": "control",
"operand": "sidebar_tree",
},
]
},
{
"keys": ["k"],
"command": "move",
"args": {
"by": "lines",
"forward": false
},
"context": [
{
"key": "control",
"operand": "sidebar_tree",
},
]
},
{
"keys": ["l"],
"command": "move",
"args": {
"by": "characters",
"forward": true,
},
"context": [
{
"key": "control",
"operand": "sidebar_tree",
},
]
},
{
"keys": [";", "q"],
"command": "close",
},
{
"keys": ["ctrl+j"],
"command": "focus_side_bar",
},
{
"keys": ["ctrl+p"],
"command": "move",
"args": {
"by": "lines",
"forward": false,
},
},
{
"keys": ["ctrl+n"],
"command": "move",
"args": {
"by": "lines",
"forward": true,
},
},
{
"keys": ["ctrl+alt+p"],
"command": "show_overlay",
"args": {
"overlay": "goto",
"show_files": true,
},
},
{
"keys": ["ctrl+o"],
"command": ""
},
{
"keys": ["ctrl+alt+o"],
"command": "prompt_open_file"
},
{
"keys": ["ctrl+alt+f"],
"command": "show_panel",
"args": {
"panel": "find",
"reverse": false,
},
},
]
```
## Package Control
```json
{
"bootstrapped": true,
"in_process_packages": [],
"installed_packages": [
"Debugger",
"Dockerfile Syntax Highlighting",
"Gofmt",
"JsPrettier",
"LSP",
"LSP-dockerfile",
"LSP-html",
"LSP-json",
"LSP-typescript",
"Package Control",
],
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment