Last active
May 4, 2018 09:18
-
-
Save nickleefly/5019281 to your computer and use it in GitHub Desktop.
sublime setting and plugins
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
[ | |
{ "keys": ["j", "j"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
{ "keys": ["ctrl+d"], "command": "find_under_expand" }, | |
{ "keys": ["ctrl+t"], "command": "toggle_setting", | |
"args": | |
{ | |
"setting": "vintage_lines.force_mode" | |
} | |
}, | |
{ "keys": ["ctrl+alt+l"], "command": "toggle_setting", | |
"args": | |
{ | |
"setting": "line_numbers" | |
} | |
}, | |
{ "keys": ["alt+m"], "command": "markdown_preview", | |
"args": | |
{ | |
"target": "browser" | |
} | |
}, | |
{ "keys": ["ctrl+["], "command": "prev_view" }, | |
{ "keys": ["ctrl+]"], "command": "next_view" }, | |
{ "keys": ["f8"], "command": "reindent", "args": {"single_line": false} }, | |
{ "keys": ["keypad_enter"], "command": "find_next", "context": | |
[{"key": "panel", "operand": "find"}, {"key": "panel_has_focus"}] | |
}, | |
{ "keys": ["f5"], "command": "refresh_folder_list" }, | |
{ "keys": ["ctrl+shift+r"], "command": "reveal_in_side_bar"} | |
] |
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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"A File Icon", | |
"Alignment", | |
"BracketHighlighter", | |
"ChangeQuotes", | |
"Color Highlighter", | |
"Colorsublime", | |
"CSS Extended Completions", | |
"DocBlockr", | |
"Emmet", | |
"Emoji", | |
"Git", | |
"GitGutter", | |
"GitHubinator", | |
"GoSublime", | |
"Gutter Color", | |
"HTML-CSS-JS Prettify", | |
"JavaScript & NodeJS Snippets", | |
"JavaScript Completions", | |
"JavaScript Snippets", | |
"Markdown Preview", | |
"nginx", | |
"Package Control", | |
"Pretty JSON", | |
"SaltStack-related syntax highlighting and snippets", | |
"SideBarEnhancements", | |
"StandardFormat", | |
"SublimeLinter", | |
"SublimeLinter-contrib-standard", | |
"Terraform" | |
] | |
} |
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
{ | |
"binary_file_patterns": | |
[ | |
"node_modules/*" | |
], | |
"bold_folder_labels": true, | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"draw_white_space": "selection", | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", | |
"node_modules" | |
], | |
"font_size": 14, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Color Sublime", | |
"SidebarEnhancements", | |
"vintage" | |
], | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"match_brackets": true, | |
"match_brackets_angle": true, | |
"match_brackets_braces": true, | |
"match_brackets_content": true, | |
"match_brackets_square": true, | |
"open_files_in_new_window": false, | |
"remember_open_files": true, | |
"rulers": | |
[ | |
84 | |
], | |
"scroll_past_end": false, | |
"scroll_speed": 2, | |
"show_encoding": true, | |
"show_full_path": true, | |
"tab_size": 2, | |
"theme": "Default.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"use_simple_full_screen": true, | |
"word_wrap": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment