commit c964d84e0ec0031dde8af66edb595d484282b0d4 parent d8d7a75b63450dbc012bc83ff99a568bd197c576 Author: Yohanes Bandung Bondowoso <hi@ybbond.dev> Date: Sat, 11 Jul 2020 12:57:58 +0700 add sublime settings Diffstat:
| A | Library/Application Support/Sublime Text/Packages/User/Default (OSX).sublime-keymap | | | 65 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
| A | Library/Application Support/Sublime Text/Packages/User/Preferences.sublime-settings | | | 48 | ++++++++++++++++++++++++++++++++++++++++++++++++ |
2 files changed, 113 insertions(+), 0 deletions(-)
diff --git a/Library/Application Support/Sublime Text/Packages/User/Default (OSX).sublime-keymap b/Library/Application Support/Sublime Text/Packages/User/Default (OSX).sublime-keymap @@ -0,0 +1,64 @@ +[ + { + "keys": ["ctrl+f"], + "command": "right_delete", + "args": {"mode": "mode_insert"}, + "context": [{"key": "vi_insert_mode_aware"}] + }, + { + "keys": ["\\", "e"], + "command": "toggle_side_bar", + "args": {"mode": "mode_command"}, + "context": [{"key": "vi_command_mode_aware"}] + }, + { + "keys": ["\\", "r"], + "command": "reveal_in_side_bar", + "args": {"mode": "mode_command"}, + "context": [{"key": "vi_command_mode_aware"}] + }, + { + "keys": ["g", "d"], + "command": "lsp_symbol_definition", + "context": [{"key": "setting.lsp_active"}] + }, + { + "keys": ["g", "s"], + "command": "lsp_document_symbols", + "context": [{"key": "setting.lsp_active"}] + }, + { + "keys": ["g", "h"], + "command": "lsp_hover", + "context": [{"key": "setting.lsp_active"}] + }, + { + "keys": ["]", "C"], + "command": "sublime_linter_goto_error", + "args": { + "direction": "next", + "wrap": true + } + }, + { + "keys": ["ctrl+super+r"], + "command": "sublime_linter_line_report" + }, + { + "keys": ["[", "C"], + "command": "sublime_linter_goto_error", + "args": { + "direction": "previous", + "wrap": true + } + }, + { + "keys": ["super+j"], + "command": "open_dir", + "args": { "dir": "$packages/User/"} + }, + { + "keys": ["f2"], + "command": "side_bar_rename" + } +]+ \ No newline at end of file diff --git a/Library/Application Support/Sublime Text/Packages/User/Preferences.sublime-settings b/Library/Application Support/Sublime Text/Packages/User/Preferences.sublime-settings @@ -0,0 +1,48 @@ +{ + "always_show_minimap_viewport": true, + "auto_complete_cycle": true, + "binary_file_patterns": + [ + ".svn/", + ".git/", + "node_modules/", + "bower_components/" + ], + "bold_folder_labels": true, + "create_window_at_startup": false, + "default_line_ending": "unix", + "drag_text": false, + "draw_white_space": "all", + "highlight_line": true, + "highlight_modified_tabs": true, + "hot_exit": false, + "ignored_packages": + [ + "JavaScript", + "Six", + "Vintage", + "Vintageous", + ], + "indent_guide_options": + [ + "draw_active" + ], + "index_skip_unknown_extensions": false, + "match_brackets_angle": true, + "relative_line_numbers": true, + "shift_tab_unindent": true, + "show_indentation": false, + "tab_size": 2, + "theme": "Adaptive.sublime-theme", + "translate_tabs_to_spaces": true, + + "lsp_format_on_save": true, + "neovintageous_build_version": 11100, + "neovintageous_search_inc_style": "fill", + "neovintageous_search_occ_style": "outline", + "vintage_start_in_command_mode": true, + "vintageous_i_escape_jk": true, + "vintageous_use_ctrl_keys": true, + "vintageous_use_super_keys": null, + "font_size": 12, +}