From f73cd395934feef665b7d760129e526de6c99493 Mon Sep 17 00:00:00 2001 From: fabian Date: Fri, 24 Feb 2023 17:21:13 +0100 Subject: [PATCH] - merged with oashi time settings - sorted lines --- .../User/Default (Linux).sublime-keymap | 13 +++++- .../User/Preferences.sublime-settings | 44 ++++++++++++++----- 2 files changed, 44 insertions(+), 13 deletions(-) diff --git a/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap b/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap index 8e445ae..2bfa62b 100644 --- a/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap +++ b/home_external/.config/sublime-text-3/Packages/User/Default (Linux).sublime-keymap @@ -1,5 +1,16 @@ [ - { "keys": ["ctrl+shift+x"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, { "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, { "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }, + { "keys": ["ctrl+tab"], "command": "next_view" }, + { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, + { "keys": ["ctrl+shift+x"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, + { "keys": ["alt+keypad_plus"], "command": "jump_forward" }, + { "keys": ["ctrl+b"], "command": "none" }, + { "keys": ["ctrl+keypad_enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"} }, + // { "keys": ["shift+tab"], "command": "insert", "args": {"characters": "\t"} }, + // { "keys": ["tab"], "command": "insert_best_completion", "args": {"default": "\t", "exact": true} } // can't unset this. fuck you. + { "keys": ["ctrl+alt+n"], "command": "new_snippet" }, + { "keys": ["ctrl+alt+f"], "command": "auto_indent" } + // { "keys": [""], "command": "lower_case" } + // { "keys": [""], "command": "upper_case" } ] diff --git a/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings b/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings index 790c78a..b89c6a5 100644 --- a/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings +++ b/home_external/.config/sublime-text-3/Packages/User/Preferences.sublime-settings @@ -1,25 +1,45 @@ // Settings in here override those in "Default/Preferences.sublime-settings", // and are overridden in turn by syntax-specific settings. { - "tab_size": 3, - "translate_tabs_to_spaces": true, - "trim_automatic_white_space": false, - "wrap_width": 120, "always_show_minimap_viewport": true, - "highlight_line": true, - "scroll_past_end": false, - "draw_white_space": ["all_mixed"], - "trim_trailing_white_space_on_save": "all", - "ensure_newline_at_eof_on_save": true, "auto_complete_commit_on_tab": true, - "auto_complete_with_fields": true, "auto_complete_trailing_symbols": true, + "auto_complete_with_fields": true, + "bold_folder_labels": true, "drag_text": false, + "draw_white_space": ["selection", "all_mixed"], + "enable_tab_scrolling": false, + "ensure_newline_at_eof_on_save": true, + "fade_fold_buttons": false, + "fallback_encoding": "UTF-8", + "font_size": 11, + "font_face": "JetBrains Mono Regular", + "highlight_line": true, "highlight_modified_tabs": true, - "remember_full_screen": true, "ignored_packages": [ "Vintage", ], - "font_size": 10, + "indent_to_bracket": false, + "margin": 0, + "rulers": + [ + 0, + 3, + 120 + ], + "shift_tab_unindent": true, + "show_encoding": true, + "show_line_endings": true, + "tab_completion": false, + "remember_full_screen": true, + "scroll_past_end": false, + "tab_size": 3, + "translate_tabs_to_spaces": true, + "trim_automatic_white_space": false, + "trim_trailing_white_space_on_save": "all", + "ui_scale": 1.1, + "use_tab_stops": false, + "word_wrap": true, + "wrap_width": 120, }