Home >Web Front-end >JS Tutorial >Sublime Text 3 Notepad Theme
This theme blends the familiar interface of Notepad with the powerful features of Sublime Text. Pair it with the Soda Light theme for a truly enhanced Sublime experience!
View Theme on GitHub
Quick Setup (Under 1 Minute):
Preferences > Browse Packages…
, and clone the Notepad theme into the Packages
directory (~/AppData/Roaming/Sublime Text 3/Packages/
).Preferences > Settings > User
and add the following configuration:<code class="language-json">{ "autoIndent": true, "color_scheme": "Packages/Theme - NotepadPlusPlus/Notepad-Plus-Plus.tmTheme", "copyOnMouseSelect": false, "drawWhiteSpace": "none", "font_face": "Courier New", "font_size": 10, "gutter": true, "highlightLine": true, "rulers": false, "tab_size": 4, "translate_tabs_to_spaces": true, "trim_trailing_white_space_on_save": true, "use_tab_stops": true, "wantVerticalScrollBar": false, "theme": "Soda Light.sublime-theme", "ignored_packages": ["Vintage"] }</code>
Give this theme a star ★ and enjoy! Note: This theme is also compatible with Sublime Text 2.
Frequently Asked Questions (FAQs):
This section provides answers to common questions about the Sublime Text 3 Notepad theme. The original FAQ section has been consolidated and rephrased for clarity and conciseness.
Installation: Download the theme, open Sublime Text's Preferences > Browse Packages
, create a "Theme - NotepadPlusPlus" folder, place the theme files there, and then add "theme": "Packages/Theme - NotepadPlusPlus/Notepad-Plus-Plus.tmTheme"
to your user settings.
Customization: Adjust settings like font_size
, color_scheme
, and others within Preferences > Settings - User
.
Compatibility: Designed for Sublime Text 3, but may work with Sublime Text 2, though not guaranteed.
Uninstallation: Remove the "Theme - NotepadPlusPlus" folder from the Packages directory and delete the theme setting from your user preferences.
Multi-Computer Use: Install the theme on each computer individually.
Syntax Highlighting: Yes, fully supported and customizable.
Licensing: Free to use. (Note: Sublime Text itself requires a license for unrestricted use.)
Sharing: Feel free to share, but always direct users to the official source for the latest version.
Performance Impact: No noticeable performance impact.
Reverting to Default: Remove the theme setting from your user preferences.
The above is the detailed content of Sublime Text 3 Notepad Theme. For more information, please follow other related articles on the PHP Chinese website!