sublime Boxy Theme安装方法

Use one of the following methods to install Package Control:

Command Palette

  1. 打开 command palette,快捷键:Win/Linux: ctrl+shift+p, Mac: cmd+shift+p

  2. 在输入框中搜 Install Package Control,点击安装

  3. 下载:https://github.com/RabbitTU/Boxy-Theme

  4. 将下载下来的压缩包解压,然后在sublimeText中,选择Preferences > Browse Packages…
    在这里插入图片描述

  5. 最后把已经解压好的插件文件夹放入打开的文件地址。并将文件家重命名为Boxy Theme
    在这里插入图片描述

  6. 由于sublime text3中手动安装的插件安装包,重启就会被自动删除
    步骤1: 复制 以下代码段

"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,

步骤2: 将代码段 插入软件的以下位置:
在这里插入图片描述

步骤3: 代码插入完成的样子
在这里插入图片描述

步骤4:
选择Preferences > Settings ,并把内容改成以下内容

{
	"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
}

步骤5: 重启 sublime text

猜你喜欢

转载自blog.csdn.net/a13821684483/article/details/107856385