Skip to content

Instantly share code, notes, and snippets.

@alex-kim-dev
Last active December 26, 2022 18:10
Show Gist options
  • Save alex-kim-dev/70a7749f11328bc246144ab554797da8 to your computer and use it in GitHub Desktop.
Save alex-kim-dev/70a7749f11328bc246144ab554797da8 to your computer and use it in GitHub Desktop.
Sublime text settings
[
{
"keys": ["ctrl+up"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "up"
}
},
{
"keys": ["ctrl+down"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "down"
}
},
// conflicts with swapping lines
{
"keys": ["ctrl+shift+down"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "down_select"
}
},
{
"keys": ["ctrl+shift+up"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "up_select"
}
},
// swap lines like in vscode
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
]
[
{
"keys": ["ctrl+up"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "up"
}
},
{
"keys": ["ctrl+down"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "down"
}
},
// conflicts with swapping lines
{
"keys": ["ctrl+shift+down"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "down_select"
}
},
{
"keys": ["ctrl+shift+up"],
"command": "line_jumper",
"args": {
"number_of_lines": 5,
"cmd": "up_select"
}
},
// swap lines like in vscode
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
]
{
"cmd": ["deno", "run", "--allow-net", "$file"],
}
{
"number_of_lines": 5
}
{
"cmd": ["/home/alex/.nodejs/bin/node", "$file"],
}
// Open In Browser Settings - User
{
"custom_browser": "brave"
}
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"JsPrettier",
"LineJumper",
"Package Control",
"SublimeLinter",
"SublimeLinter-eslint",
"Sync Settings",
"Visual Studio Code Plus Scheme",
"Visual Studio Dark",
],
}
{
"auto_complete_commit_on_tab": true,
"auto_complete_cycle": true,
"caret_extra_top": 2,
"caret_extra_bottom": 2,
"caret_style": "blink",
"drag_text": false,
"ensure_newline_at_eof_on_save": true,
"font_face": "Cascadia Code PL",
"font_options": [
"gray_antialias",
"subpixel_antialias"
],
"font_size": 11,
"hide_new_tab_button": true,
"hide_tab_scrolling_buttons": true,
"highlight_line": true,
"ignored_packages": [
"Vintage",
],
"indent_guide_options": [
"draw_normal",
"draw_active"
],
"margin": 0,
"shift_tab_unindent": true,
"tab_size": 2,
"theme": "Adaptive.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"color_scheme": "Mariana.sublime-color-scheme",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment