1.主题预览

material主题:https://equinsuocha.io/material-theme/#/default

2.效果预览

  1. {
  2. "ignored_packages":
  3. [
  4. "Vintage"
  5. ],
  6. "indent_guide_options":
  7. [
  8. "draw_normal",
  9. "draw_active"
  10. ],
  11. // fonts
  12. "font_options": [
  13. "gray_antialias",
  14. "subpixel_antialias"
  15. ],
  16. "font_size": 14,
  17. "line_padding_bottom": 3,
  18. "line_padding_top": 3,
  19. "always_show_minimap_viewport" : true,
  20. "bold_folder_labels" : true,
  21. "font_options" : ["gray_antialias", "subpixel_antialias"], // On retina Mac & Windows
  22. "indent_guide_options" : ["draw_normal", "draw_active"], // Highlight active indent
  23. "line_padding_bottom" : 3,
  24. "line_padding_top" : 3,
  25. "overlay_scroll_bars" : "enabled",
  26. // Themes
  27. "theme": "Material-Theme.sublime-theme",
  28. "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
  29. "material_theme_arrow_folders": true,
  30. // Panels
  31. "material_theme_accent_scrollbars": true, // Enable accent color for scrollbars
  32. "material_theme_accent_titlebar": true, // Enable accent color for titlebar
  33. "material_theme_bright_scrollbars": true, // Bright scrollbars puck color
  34. "material_theme_compact_panel": true, // Set minimal padding for the search panel
  35. "material_theme_contrast_mode": true, // Enable sidebar and panels contrast mode
  36. "material_theme_panel_separator": true, // Show bottom panel separator
  37. "material_theme_small_statusbar": true, // Set small status bar
  38. "material_theme_titlebar": true, // Enable title bar (OS X 10.10+)
  39. // Sidebar
  40. "material_theme_arrow_folders": true, // Replace folder icons with arrows
  41. "material_theme_big_fileicons": true, // Show bigger file type icons
  42. "material_theme_bullet_tree_indicator": true, // Set a bullet as active tree indicator
  43. "material_theme_compact_sidebar": true, // Set compact sidebar
  44. "material_theme_disable_fileicons": true, // Hide sidebar file type icons
  45. "material_theme_disable_folder_animation": true, // Disable folder animation
  46. "material_theme_disable_tree_indicator": true, // Disable sidebar file indicator
  47. // Tabs
  48. "material_theme_bold_tab": true, // Make the tab labels bolder
  49. "material_theme_small_tab": true, // Set small tabs
  50. "material_theme_tabs_autowidth": true, // Enable autowidth for tabs
  51. "material_theme_tabs_separator": true, // Show tabs separator, this disables tab hover animation
  52. // If you use Material Theme - Appbar addon, you can use this setting:
  53. "material_theme_tree_headings": true, // Show sidebar headings
  54. }

Sublime美化配置的更多相关文章

  1. Sublime Text 配置记录

    sublime userSetting sublime theme sublime plug sublime userSetting 对sublime的配置 { "color_scheme& ...

  2. Sublime Text配置Python开发利器

    Sublime Text配置Python开发利器 收好了 自动提示 jedi 代码格式化 Python PEP8 autoformat 如果还需要在shell中搞搞研究的话,ipython将是很好的选 ...

  3. Sublime Text 配置

    Sublime Text 配置 1.键盘映射 映射成emacs的键盘方式: Preferences --> Key Bounding - user:然后复制如下配置信息(注意取消前缀“...-- ...

  4. Sublime Text3 配置markdown插件

    sublime是一个亮骚的文本编辑器,而且是跨三大平台,而markdown是一门标记语法,对于记录真是神器,具体语法百度很多,下面教你在sublime上配置markdown. 这两个神器结合起来简直好 ...

  5. Windows Sublime Text 配置Linux子系统(WSL)下的 gcc/g++ 编译环境

    0. 简介(若已了解背景可以跳过此部分) Windows 10 Build 14316以上版本中加入了"Windows系统的Linux子系统"(Windows Subsystem ...

  6. sublime Xdebug 配置

    Sublime Text 配置x-debug 配置php 的x-debug 拓展 下载地址 :http://www.xdebug.org/download.php 放到php ext的目录下 然后使用 ...

  7. Sublime codeIntel 配置支持php自动提示

    Sublime codeIntel 配置支持php自动提示 下载地址:https://github.com/SublimeCodeIntel/SublimeCodeIntel 安装方法:下载后放到su ...

  8. Golang学习:sublime text3配置golang环境

    最近导师让学习golang, 然后我就找了些有关golang的学习视频和网站. 昨天在电脑上下载了go tools, 之后在sublime上配置了golang的运行环境.By the way, 我的电 ...

  9. Sublime 个人配置

    Sublime 个人配置 用的faltland主题,之后还加了一些自己喜欢的东西. 效果图如下: { "always_show_minimap_viewport": true, & ...

随机推荐

  1. MVC开发中的常见错误-06-"无法在发送 HTTP 标头之后进行重定向。"

    通过监视可以看到: 原来是跳转到登录页面后,登录页面中又发送了一个GeMneuItems的请求,用于加载页面图片

  2. 《剑指offer》-旋转数组的最小数字

    把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转. 输入一个非递减排序的数组的一个旋转,输出旋转数组的最小元素. 例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个旋转,该数 ...

  3. JQuery插件jqModal应用详解(十二)

    JqModal 是jQuery的一个插件,用来在web浏览器中显示自定义通告,而且它为通用窗口框架奠定了基础. 1. 多模型支持 2. 支持拖拽和重定义大小 3, 支持远程加载窗口内容(ajax和if ...

  4. C#的基础

    一:Ref和Out 的区别: 1.使用ref型参数时,传入的参数必须先被初始化.对out而言,必须在方法中对其完成初始化. 2.使用ref和out时,在方法的参数和执行方法时,都要加Ref或Out关键 ...

  5. 【转】角落的开发工具集之Vs(Visual Studio)2017插件推荐

    因为最近录制视频的缘故,很多朋友都在QQ群留言,或者微信公众号私信我,问我一些工具和一些插件啊,怎么使用的啊?那么今天我忙里偷闲整理一下清单,然后在这里面公布出来. Visual Studio 201 ...

  6. 迪米特法则(Law of Demeter, LoD)

    一个软件实体应当尽可能少地与其他实体发生相互作用 未完待续

  7. unity pattern not found

    在之前破解成功再次破解或者电脑上多个版本Unity往往会导致破解失败. 破解失败解决方法如下: 先用破解软件破解,虽然是破解失败但是还是可以在破解的目录下找到那个ulf文件. 这时候直接打开unity ...

  8. python开发环境PyCharm安转注册

    0x1 ,安装 0x2 , 调整时间到2038年. 0x3 ,申请30天试用 0x4, 退出pycharm 0x5, 时间调整回来. ##注册方法2### 注册方法:在注册时选择 License se ...

  9. Camera摄像头

    <LinearLayout android:id="@+id/btn_layout" android:layout_width="match_parent" ...

  10. 如何在Maven官网下载历史版本

    如何在Maven官网下载历史版本 历史版本一般会隔一段时间,便找不到,官网会及时显示的是最新版本.不多说,直接进入. https://archive.apache.org/dist/maven/bin ...