diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-06-21 19:40:23 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-06-21 19:40:23 -0300 |
commit | cbed4f10a8dca07b3b154cd75c788bec851bf182 (patch) | |
tree | 1b0890ffa273aa63b8bca6821963ac74dced8cf2 /Sublime Text | |
parent | f2d87aed3585102ac978d0eee7ad8babd0cb735b (diff) |
basic Sublime Text files
Diffstat (limited to 'Sublime Text')
-rw-r--r-- | Sublime Text/Default (OSX).sublime-keymap | 6 | ||||
-rw-r--r-- | Sublime Text/Plain text.sublime-settings | 11 | ||||
-rw-r--r-- | Sublime Text/Preferences.sublime-settings | 41 |
3 files changed, 58 insertions, 0 deletions
diff --git a/Sublime Text/Default (OSX).sublime-keymap b/Sublime Text/Default (OSX).sublime-keymap new file mode 100644 index 0000000..abe47a9 --- /dev/null +++ b/Sublime Text/Default (OSX).sublime-keymap @@ -0,0 +1,6 @@ +[ + { "keys": ["ctrl+tab"], "command": "next_view" }, + { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, + { "keys": ["super+alt+s"], "command": "toggle_side_bar" }, + { "keys": ["super+shift+d"], "command": "clone_file" } +] diff --git a/Sublime Text/Plain text.sublime-settings b/Sublime Text/Plain text.sublime-settings new file mode 100644 index 0000000..d32596d --- /dev/null +++ b/Sublime Text/Plain text.sublime-settings @@ -0,0 +1,11 @@ +// These settings override both User and Default settings for the Plain text syntax +{ + "rulers": [55, 75, 80], + "ruler_style": "stippled", + + "match_brackets": false, + "auto_match_enabled": false, + + "draw_indent_guides": false, + // "indent_guide_options": ["draw_active"], +} diff --git a/Sublime Text/Preferences.sublime-settings b/Sublime Text/Preferences.sublime-settings new file mode 100644 index 0000000..b48212e --- /dev/null +++ b/Sublime Text/Preferences.sublime-settings @@ -0,0 +1,41 @@ +{ + "font_face": "Input Mono Narrow", + // /*"font_size": 14,*/ + + "highlight_line": true, + "scroll_past_end": true, + "scroll_context_lines": 6, + "indent_guide_options": ["draw_active"], + + "trim_trailing_white_space_on_save": "not_on_caret", + "ensure_newline_at_eof_on_save": true, + + "wrap_width": 80, + "wrap_width_style": "min", + + "tab_completion": false, + "mini_diff": "auto", + "auto_complete": true, + + "tab_size": 2, + "translate_tabs_to_spaces": true, + + "native_tabs": "preferred", + "update_system_recent_files": false, + + "ignored_packages": + [ + "MarkdownEditing", + "Vintage", + ], + + "theme": "auto", + "dark_color_scheme": "Packages/Theme - Afterglow/Afterglow-twilight.tmTheme", + "light_color_scheme": "Celeste.sublime-color-scheme", + + // MarkdownEditing preferences + "mde.auto_fold_link.enabled": false, + "mde.list_indent_bullets": [], + "color_scheme": "Packages/Theme - Cyanide/Cyanide - Wood - Black.tmTheme", + "font_size": 13, +} |