Sublime Text3 MakeDown 编辑器

Sublime Text3 MakeDown 编辑器

[TOC]

MakeDown 官网语法

Package Control 插件管理工具

设置配置

依次打开 Preferences --> Settings

{
"auto_close_tags": false,
"auto_complete": true,
"auto_match_enabled": true,
"bold_folder_labels": true,
"caret_style": "smooth",
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_face": "Consolas",
"font_options":
[
"italic"
],
"font_size": 14,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"open_files_in_new_window": false,
"save_on_focus_lost": true,
"show_encoding": true,
"show_full_path": true,
"tab_size": 4,
"theme": "Adaptive.sublime-theme",
"translate_tabs_to_spaces": true,
"update_check": false
}

OmniMarkupPreviewer

Git 下载地址: https://github.com/timonwong/OmniMarkupPreviewer.git

  • 1、打开菜单栏proferences/package setting/ OminMarkupPreviewer
  • 2、需要修改setting-user 写入一下类容并保存
{
    "server_host": "localhost", 
    "server_port": 51004,
    "refresh_on_modified": false,
    "refresh_on_modified_delay": 2000,
    "refresh_on_saved": true,
}

  • 参数说明:
  • "server_host": "localhost", # 本地ip地址
  • "server_port": 51004, # 如果有端口冲突,可自定义端口号
  • "refresh_on_modified": false, #

MarkdownPreview

Git 下载地址: git clone https://github.com/facelessuser/MarkdownPreview.git

auto-save

Git 下载地址: git clone https://github.com/jamesfzhang/auto-save.git

写入一下类容 Preference → Package Settings → Auto-save → Settings-User

{
   "auto_save_delay_in_seconds": 0.5
}

配置快捷键

修改 Preferences --> key Bindings

[
    { "keys": ["ctrl+shift+s"], "command": "auto_save" }
]

Side​Bar​Enhancements

Git 下载地址:
git clone https://github.com/titoBouzout/SideBarEnhancements.git

Live​Reload

Git 下载地址: git clone https://github.com/alepez/LiveReload-sublimetext3.git

配置 Perference/package-setting/LiveReload -- settings-user

{
    "enabled_plugins": [
        "SimpleReloadPlugin",
        "SimpleRefresh"
    ]
}
posted @ 2020-06-19 23:07  信念&坚持✊  阅读(73)  评论(0)    收藏  举报