✨ Sublime Text 4 Configuration Files¶
Overview¶
This section contains configuration files for Sublime Text 4, a sophisticated text editor for code, markup, and prose with extensive customization options.
⌨️ Keybindings¶
macOS Keybindings¶
File: keymaps/sublime-4/keymap-mac.json
Keymap-mac
Windows Keybindings¶
File: keymaps/sublime-4/keymap-windows.json
Keymap-windows
[
    { "keys": ["ctrl+shift+s"], "command": "save_all" },
    { "keys": ["ctrl+d"], "command": "duplicate_line" },
    { "keys": ["ctrl+shift+d"],  "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },   
    { "keys": ["ctrl+shift+u"], "command": "upper_case" },
    { "keys": ["ctrl+shift+l"], "command": "lower_case" }
]
⚙️ Settings¶
Windows Settings¶
File: keymaps/sublime-4/settings-windows.json
??? settings-windows.json
```json
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings.
{
    "font_size": 11,
    // Display file encoding in the status bar
    "show_encoding": true,
    "ignored_packages":
    [
        "Vintage",
    ],
    "word_wrap": true,
    "open_files_in_new_window": false,
    "update_check":false
}
```
🔧 Key Features¶
- Cross-platform keybinding configurations
 - Platform-specific settings optimization
 - Custom editor behaviors and preferences
 - Enhanced productivity shortcuts