sublime Boxy Theme installation method

Use one of the following methods to install Package Control:

Command Palette

  1. Open the command palette, shortcut keys: Win/Linux: ctrl+shift+p, Mac: cmd+shift+p

  2. Search for Install Package Control in the input box and click Install

  3. Download: https://github.com/RabbitTU/Boxy-Theme

  4. Unzip the downloaded compressed package, and then in sublimeText, select Preferences > Browse Packages…
    Insert image description here

  5. Finally, place the unzipped plug-in folder into the opened file address. And rename the file home to Boxy Theme
    Insert image description here

  6. Due to the manually installed plug-in installation package in sublime text3, it will be automatically deleted after restarting.
    Step 1: Copy the following code snippet

"auto_upgrade": false,

	// If missing packages should be automatically installed when ST starts
	"install_missing": false,

	// If a package was installed by Package Control (has a
	// package-metadata.json file) but is not in installed_packages, remove it
	// based upon the assumption that it was removed on another machine and
	// the Package Control.sublime-settings file was synced to this machine.
	"remove_orphaned": false,

Step 2: Insert the code snippet into the software at the following location:
Insert image description here

Step 3: What the code insertion will look like
Insert image description here

Step 4:
Select Preferences > Settings and change the content to the following

{
	"color_scheme": "Packages/Boxy Theme/schemes/Boxy Monokai.tmTheme",
	"font_size": 13,
	"highlight_modified_tabs": true,
	"ignored_packages":
	[
		"Vintage"
	],
	"tab_size": 4,
	"theme": "Boxy Monokai.sublime-theme",
	"theme_sidebar_font_lg": true,
	"theme_sidebar_font_md": true,
	"theme_sidebar_highlight_selected_text_only": false,
	"theme_tab_font_lg": true,
	"translate_tabs_to_spaces": true,
	"update_check": false
}

Step 5: Restart sublime text

Guess you like

Origin blog.csdn.net/a13821684483/article/details/107856385