vs code 配置项(settings.json)

2020-04-12

{
    "files.autoSave": "off",
    "files.autoSaveDelay": 10000,
    "files.trimTrailingWhitespace": true,
    "files.trimFinalNewlines": true,
    "editor.cursorBlinking": "solid",
    "editor.fontWeight": "100",
    "editor.smoothScrolling": true,
    "editor.codeActionsOnSaveTimeout": 8500,
    "window.zoomLevel": 1,
    "editor.tabSize": 2,
    "editor.dragAndDrop": true,
    "editor.lineHeight": 22,
    "editor.fontSize": 16,
    "typescript.format.semicolons": "remove",
    "search.showLineNumbers": true,
    "zenMode.fullScreen": false,
    "window.autoDetectHighContrast": false,
    "window.menuBarVisibility": "toggle",
    "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
    "terminal.integrated.fontFamily": "Consolas, '微软雅黑', 'Courier New', monospace",
    //  #让函数(名)和后面的括号之间加个空格
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    // #每次保存的时候将代码按eslint格式进行修复
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true
    },
    "eslint.validate": [
        "vue",
        "html",
        "javascript",
        "typescript",
        "javascriptreact",
        "typescriptreact"
    ],
    "files.associations": {
    
        "*.vue": "vue"
    },
    "eslint.options": {
        "extensions": [
            ".js",
            ".vue"
        ]
    },
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/dist": true
    },
    "emmet.syntaxProfiles": {
        "javascript": "jsx",
        "vue": "html",
        "vue-html": "html"
    },
    "[vue]": {
        "editor.defaultFormatter": "octref.vetur"
    },
    "editor.minimap.enabled": false,
    "workbench.colorCustomizations": {
        "activityBar.background": "#111111",
        "activityBarBadge.background": "#12cc6f",
        "list.activeSelectionForeground": "#12cc6f",
        "list.inactiveSelectionForeground": "#12cc6f",
        "list.highlightForeground": "#12cc6f",
        "scrollbarSlider.activeBackground": "#FFA00050",
        "editorSuggestWidget.highlightForeground": "#12cc6f",
        "textLink.foreground": "#12cc6f",
        "progressBar.background": "#12cc6f",
        "pickerGroup.foreground": "#12cc6f",
        "tab.activeBorder": "#12cc6f",
        "notificationLink.foreground": "#12cc6f",
        "editorWidget.resizeBorder": "#12cc6f",
        "editorWidget.border": "#12cc6f",
        "settings.modifiedItemIndicator": "#12cc6f",
        "settings.headerForeground": "#12cc6f",
        "panelTitle.activeBorder": "#12cc6f",
        "breadcrumb.activeSelectionForeground": "#12cc6f",
        "menu.selectionForeground": "#12cc6f",
        "menubar.selectionForeground": "#12cc6f"
    },
    "workbench.colorTheme": "Atom One Dark",
    "workbench.statusBar.visible": true,
    "workbench.activityBar.visible": true,
    "workbench.commandPalette.preserveInput": true,
    "workbench.startupEditor": "newUntitledFile",
    "materialTheme.accent": "Yellow",
    "breadcrumbs.enabled": true,
    "breadcrumbs.filePath": "off",
    "breadcrumbs.symbolPath": "last",
    "liveServer.settings.donotVerifyTags": true,
    "git.autofetch": true,
    "git.enableSmartCommit": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "editor.formatOnPaste": true,
    "editor.formatOnSave": true,
    "editor.formatOnType": true
}

2019-12-10

{
  "files.autoSave": "afterDelay",
  "files.autoSaveDelay": 10000,
  "files.trimTrailingWhitespace": true,
  "files.trimFinalNewlines": true,
  "editor.cursorBlinking": "solid",
  "editor.fontWeight": "100",
  "editor.smoothScrolling": true,
  "editor.formatOnSave": true,
  "editor.formatOnPaste": true,
  "editor.formatOnType": true,
  "editor.codeActionsOnSaveTimeout": 8500,
  "window.zoomLevel": 1,
  "editor.tabSize": 2,
  "editor.dragAndDrop": true,
  "editor.lineHeight": 22,
  "editor.fontSize": 16,
  "javascript.format.semicolons": "remove",
  "typescript.format.semicolons": "remove",
  "search.showLineNumbers": true,
  "zenMode.fullScreen": false,
  "window.autoDetectHighContrast": false,
  "window.menuBarVisibility": "toggle",
  "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  "terminal.integrated.fontFamily": "Consolas, '微软雅黑', 'Courier New', monospace",
  //  #让函数(名)和后面的括号之间加个空格
  "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  // #这个按用户自身习惯选择
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  // #让vue中的js按编辑器自带的ts格式进行格式化
  "vetur.format.defaultFormatter.js": "vscode-typescript",
  "vetur.format.defaultFormatterOptions": {
    "prettier": {
      "semi": false,
      "singleQuote": true
    },
    "js-beautify-html": {
      "wrap_line_length": 120,
      "wrap_attributes": "auto",
      "end_with_newline": false
    },
    "prettyhtml": {
      "printWidth": 100,
      "singleQuote": false,
      "wrapAttributes": false,
      "sortAttributes": false
    }
  },
  // #每次保存的时候将代码按eslint格式进行修复
  "eslint.autoFixOnSave": true,
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    {
      "language": "html",
      "autoFix": true
    },
    {
      "language": "vue",
      "autoFix": true
    }
  ],
  "files.associations": {
    "*.vue": "vue"
  },
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "prettier.jsxSingleQuote": true,
  "prettier.semi": false,
  "prettier.singleQuote": true,
  "[vue]": {
    "editor.defaultFormatter": "octref.vetur"
  },
  "editor.minimap.enabled": false,
  "workbench.colorCustomizations": {
    "activityBar.background": "#111111",
    "activityBarBadge.background": "#12cc6f",
    "list.activeSelectionForeground": "#12cc6f",
    "list.inactiveSelectionForeground": "#12cc6f",
    "list.highlightForeground": "#12cc6f",
    "scrollbarSlider.activeBackground": "#FFA00050",
    "editorSuggestWidget.highlightForeground": "#12cc6f",
    "textLink.foreground": "#12cc6f",
    "progressBar.background": "#12cc6f",
    "pickerGroup.foreground": "#12cc6f",
    "tab.activeBorder": "#12cc6f",
    "notificationLink.foreground": "#12cc6f",
    "editorWidget.resizeBorder": "#12cc6f",
    "editorWidget.border": "#12cc6f",
    "settings.modifiedItemIndicator": "#12cc6f",
    "settings.headerForeground": "#12cc6f",
    "panelTitle.activeBorder": "#12cc6f",
    "breadcrumb.activeSelectionForeground": "#12cc6f",
    "menu.selectionForeground": "#12cc6f",
    "menubar.selectionForeground": "#12cc6f"
  },
  "workbench.colorTheme": "Ayu One Dark",
  "workbench.statusBar.visible": true,
  "workbench.activityBar.visible": true,
  "workbench.commandPalette.preserveInput": true,
  "workbench.startupEditor": "newUntitledFile",
  "materialTheme.accent": "Yellow",
  "breadcrumbs.enabled": true,
  "breadcrumbs.filePath": "off",
  "breadcrumbs.symbolPath": "last",
  "liveServer.settings.donotVerifyTags": true,
  "git.autofetch": true,
  "git.enableSmartCommit": true
}

2018-08-09

{
    "files.autoSave": "afterDelay",
    "files.autoSaveDelay": 10000,
    "editor.fontSize": 16,
    "editor.insertSpaces": false,
    "editor.lineNumbers": "interval",
    "editor.cursorBlinking": "solid",
    "editor.fontWeight": "100",
    "editor.smoothScrolling": true,
    "editor.wordWrap": "wordWrapColumn",
    "editor.wordWrapColumn": 100,
    "editor.codeActionsOnSaveTimeout": 8500,
    "editor.dragAndDrop": true,
    "editor.lineHeight": 24,
    "editor.renderLineHighlight": "all",
    "editor.tabCompletion": "onlySnippets",
    "editor.tabSize": 2,
    "editor.minimap.maxColumn": 20,
    "editor.detectIndentation": true,
    "editor.renderIndentGuides": false,
    "editor.hideCursorInOverviewRuler": true,
    "editor.overviewRulerBorder": false,
    "editor.quickSuggestions": true,
    "editor.fontLigatures": true,
    "editor.minimap.renderCharacters": false,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.mouseWheelScrollSensitivity": 5,
    "files.trimTrailingWhitespace": true,
    "files.trimFinalNewlines": true,
    "window.zoomLevel": 1,
    "git.autofetch": true,
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true
    },
    "vetur.format.defaultFormatter.html": "prettyhtml",
    "vetur.format.defaultFormatterOptions": {
        "prettier": {
            "semi": true, // 保留分号
            "singleQuote": true, // 使用单引号
            "jsxBracketSameLine": true, // 将 > 多行JSX元素放在最后一行的末尾, 而不是单独放在下一行
            "arrowParens": "always" // 要求箭头函数的参数使用圆括号
        },
        "prettyhtml": {
            "printWidth": 160,
            "singleQuote": false,
            "proseWrap": "preserve",
            "wrapAttributes": false,
            "sortAttributes": false
        },
        "js-beautify-html": {
            "wrap_attributes": "auto",
        }
    },
    "extensions.closeExtensionDetailsOnViewChange": true,
    "extensions.ignoreRecommendations": true,
    "extensions.showRecommendationsOnlyOnDemand": true,
    "files.associations": {
        "*.js": "javascript"
    },
    "emmet.includeLanguages": {
        "javascript": "javascriptreact",
        "jsx-sublime-babel-tags": "javascriptreact"
    },
    "emmet.triggerExpansionOnTab": true,
    "emmet.showExpandedAbbreviation": "never",

    "terminal.explorerKind": "external",
    "terminal.integrated.cursorStyle": "underline",
    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
    "terminal.integrated.fontFamily": "Consolas, 'Courier New', monospace",

    // import路径移动或重命名时,自动更新
    "javascript.updateImportsOnFileMove.enabled": "always",
    // 匿名函数后加空格
    "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    // 函数名后加空格
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,

    /*--------- 第三方插件设置 ----------*/
    // eslint保存时自动修复
    "eslint.autoFixOnSave": true,
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "html",
        {
            "language": "javascript",
            "autoFix": true
        },
        {
            "language": "html",
            "autoFix": true
        },
        {
            "language": "vue",
            "autoFix": true
        }
    ],
    "eslint.options": {
        "plugins": ["html"]
    },
    "eslint.alwaysShowStatus": true,
    // gitlens
    "gitlens.advanced.fileHistoryFollowsRenames": false,
    "gitlens.advanced.caching.enabled": false,
    "gitlens.advanced.maxListItems": 100,
    "gitlens.blame.separateLines": false,
    // bracket Pair Colorizer
    "bracketPairColorizer.colorMode": "Independent",
    // prettier
    "prettier.tabWidth": 4,
    "prettier.parser": "flow",
    // powermode
    "powermode.enabled": true,
    "powermode.enableShake": false,
    "powermode.explosionOffset": 1,
    // Settings Sync
    "sync.askGistName": true,
    "sync.gist": "c29326e6685e3ba4f18bd383fbd11602",

    /*--------- 主题、界面设置 ----------*/
    // 工作区颜色自定义
    "workbench.colorCustomizations": {
        "activityBar.background": "#111111",
        "activityBarBadge.background": "#12cc6f",
        "list.activeSelectionForeground": "#12cc6f",
        "list.inactiveSelectionForeground": "#12cc6f",
        "list.highlightForeground": "#12cc6f",
        "scrollbarSlider.activeBackground": "#FFA00050",
        "editorSuggestWidget.highlightForeground": "#12cc6f",
        "textLink.foreground": "#12cc6f",
        "progressBar.background": "#12cc6f",
        "pickerGroup.foreground": "#12cc6f",
        "tab.activeBorder": "#12cc6f",
        "notificationLink.foreground": "#12cc6f",
        "editorWidget.resizeBorder": "#12cc6f",
        "editorWidget.border": "#12cc6f",
        "settings.modifiedItemIndicator": "#12cc6f",
        "settings.headerForeground": "#12cc6f",
        "panelTitle.activeBorder": "#12cc6f",
        "breadcrumb.activeSelectionForeground": "#12cc6f",
        "menu.selectionForeground": "#12cc6f",
        "menubar.selectionForeground": "#12cc6f"
    },
    // 工作区
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Ayu One Dark",
    "workbench.statusBar.visible": true,
    "workbench.activityBar.visible": true,
    "workbench.commandPalette.preserveInput": true,
    "workbench.startupEditor": "newUntitledFile",
    "materialTheme.accent": "Yellow",
    "markdownlint.customRules": [
        "{docsmsft.docs-markdown}/markdownlint-custom-rules/rules.js"
    ],
    "files.insertFinalNewline": true,
    "files.useExperimentalFileWatcher": true,
    "breadcrumbs.enabled": true,
    "breadcrumbs.filePath": "off",
    "breadcrumbs.symbolPath": "last",
    "workbench.editor.highlightModifiedTabs": true,
    "window.autoDetectHighContrast": false,
    "window.menuBarVisibility": "toggle",
    "search.showLineNumbers": true,
    "search.useGlobalIgnoreFiles": true,
    "scm.alwaysShowActions": true,
    "terminal.integrated.confirmOnExit": true,
    "terminal.integrated.copyOnSelection": true,
    "scm.diffDecorations": "none",
    "workbench.editor.revealIfOpen": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "[javascript]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "editor.formatOnSave": true,
    "editor.formatOnPaste": true,
    "editor.formatOnType": true,
    "html.format.endWithNewline": true,
    "zenMode.fullScreen": false,
    "workbench.statusBar.feedback.visible": false,
    "stylusSupremacy.sortProperties": "grouped",
    "liveServer.settings.donotVerifyTags": true,
    "editor.quickSuggestionsDelay": 200,
    "search.exclude": {
        "**/dist": true
    }
}

最近更新 2019-10-09

{
    "files.autoSave": "off",
    "files.autoSaveDelay": 10000,
    "editor.fontSize": 16,
    "editor.insertSpaces": false,
    "editor.lineNumbers": "interval",
    "editor.cursorBlinking": "solid",
    "editor.fontWeight": "100",
    "editor.smoothScrolling": true,
    "editor.wordWrap": "wordWrapColumn",
    "editor.wordWrapColumn": 160,
    "editor.codeActionsOnSaveTimeout": 8500,
    "editor.dragAndDrop": true,
    "editor.lineHeight": 24,
    "editor.renderLineHighlight": "all",
    "editor.tabCompletion": "onlySnippets",
    "editor.minimap.maxColumn": 20,
    "editor.detectIndentation": false,
    "editor.tabSize": 2,
    "editor.renderIndentGuides": false,
    "editor.hideCursorInOverviewRuler": true,
    "editor.overviewRulerBorder": false,
    "editor.quickSuggestions": true,
    "editor.fontLigatures": true,
    "editor.minimap.renderCharacters": false,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.mouseWheelScrollSensitivity": 5,
    "files.trimTrailingWhitespace": true,
    "files.trimFinalNewlines": true,
    "window.zoomLevel": 1,
    "git.autofetch": true,
    "prettier.singleQuote": true,
    "prettier.semi": false,
    "vetur.format.defaultFormatter.html": "prettier",
    "vetur.format.defaultFormatterOptions": {
        "prettier": {
            "semi": false, // 保留分号
            "singleQuote": true, // 使用单引号
            "jsxBracketSameLine": true, // 将 > 多行JSX元素放在最后一行的末尾, 而不是单独放在下一行
            "arrowParens": "always" // 要求箭头函数的参数使用圆括号
        },
        "prettyhtml": {
            "printWidth": 160,
            "singleQuote": false,
            "proseWrap": "preserve",
            "wrapAttributes": false,
            "sortAttributes": false
        },
        "js-beautify-html": {
            "wrap_attributes": "auto"
        }
    },
    "extensions.closeExtensionDetailsOnViewChange": true,
    "extensions.ignoreRecommendations": true,
    "extensions.showRecommendationsOnlyOnDemand": true,
    "files.associations": {
        "*.js": "javascript"
    },
    "emmet.includeLanguages": {
        "javascript": "javascriptreact",
        "jsx-sublime-babel-tags": "javascriptreact"
    },
    "emmet.triggerExpansionOnTab": true,
    "emmet.showExpandedAbbreviation": "never",
    "terminal.explorerKind": "external",
    "terminal.integrated.cursorStyle": "underline",
    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
    "terminal.integrated.fontFamily": "Consolas, 'Courier New', monospace",
    // import路径移动或重命名时,自动更新
    "javascript.updateImportsOnFileMove.enabled": "always",
    // 匿名函数后加空格
    "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
    // 函数名后加空格
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    /*--------- 第三方插件设置 ----------*/
    // eslint保存时自动修复
    "eslint.autoFixOnSave": true,
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        "html",
        {
            "language": "javascript",
            "autoFix": true
        },
        {
            "language": "html",
            "autoFix": true
        },
        {
            "language": "vue",
            "autoFix": true
        }
    ],
    "eslint.options": {
        "plugins": [
            "html"
        ]
    },
    "eslint.alwaysShowStatus": true,
    // gitlens
    "gitlens.advanced.fileHistoryFollowsRenames": false,
    "gitlens.advanced.caching.enabled": false,
    "gitlens.advanced.maxListItems": 100,
    "gitlens.blame.separateLines": false,
    // bracket Pair Colorizer
    "bracketPairColorizer.colorMode": "Independent",
    // prettier
    "prettier.tabWidth": 2,
    "prettier.parser": "flow",
    // powermode
    "powermode.enabled": true,
    "powermode.enableShake": false,
    "powermode.explosionOffset": 1,
    /*--------- 主题、界面设置 ----------*/
    // 工作区颜色自定义
    "workbench.colorCustomizations": {
        "activityBar.background": "#111111",
        "activityBarBadge.background": "#12cc6f",
        "list.activeSelectionForeground": "#12cc6f",
        "list.inactiveSelectionForeground": "#12cc6f",
        "list.highlightForeground": "#12cc6f",
        "scrollbarSlider.activeBackground": "#FFA00050",
        "editorSuggestWidget.highlightForeground": "#12cc6f",
        "textLink.foreground": "#12cc6f",
        "progressBar.background": "#12cc6f",
        "pickerGroup.foreground": "#12cc6f",
        "tab.activeBorder": "#12cc6f",
        "notificationLink.foreground": "#12cc6f",
        "editorWidget.resizeBorder": "#12cc6f",
        "editorWidget.border": "#12cc6f",
        "settings.modifiedItemIndicator": "#12cc6f",
        "settings.headerForeground": "#12cc6f",
        "panelTitle.activeBorder": "#12cc6f",
        "breadcrumb.activeSelectionForeground": "#12cc6f",
        "menu.selectionForeground": "#12cc6f",
        "menubar.selectionForeground": "#12cc6f"
    },
    // 工作区
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Ayu One Dark",
    "workbench.statusBar.visible": true,
    "workbench.activityBar.visible": true,
    "workbench.commandPalette.preserveInput": true,
    "workbench.startupEditor": "newUntitledFile",
    "materialTheme.accent": "Yellow",
    "files.insertFinalNewline": true,
    "files.useExperimentalFileWatcher": true,
    "breadcrumbs.enabled": true,
    "breadcrumbs.filePath": "off",
    "breadcrumbs.symbolPath": "last",
    "workbench.editor.highlightModifiedTabs": true,
    "window.autoDetectHighContrast": false,
    "window.menuBarVisibility": "toggle",
    "search.showLineNumbers": true,
    "search.useGlobalIgnoreFiles": true,
    "scm.alwaysShowActions": true,
    "terminal.integrated.confirmOnExit": true,
    "terminal.integrated.copyOnSelection": true,
    "scm.diffDecorations": "none",
    "workbench.editor.revealIfOpen": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[css]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "editor.formatOnType": true,
    "html.format.endWithNewline": true,
    "zenMode.fullScreen": false,
    "stylusSupremacy.sortProperties": "grouped",
    "liveServer.settings.donotVerifyTags": true,
    "editor.quickSuggestionsDelay": 200,
    "search.exclude": {
        "**/dist": true
    },
    "git.enableSmartCommit": true,
    "gitlens.advanced.messages": {
        "suppressLineUncommittedWarning": true
    },
    "editor.minimap.enabled": false,
    "editor.formatOnPaste": true,
    "editor.formatOnSave": true
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • // 将设置放入此文件中以覆盖默认设置{// 控制是否显示 minimap"editor.minimap.enab...
    小线亮亮阅读 2,104评论 0 0
  • This project was bootstrapped with Create React App. Belo...
    unspecx阅读 5,132评论 0 2
  • 被逼出来的成熟 曾声飞哭的时候没人哄,我学会了坚强; 哭的时候没人哄,我学会了坚强; 怕的时候没人陪,我学会了勇敢...
    清酒无欢阅读 172评论 0 0
  • 古诗十九首(之十)迢迢牵牛星,皎皎河汉女,纤纤擢素手,札札弄机杼。终日不成章,涕泣零如雨。河汉清且浅,相去复几许,...
    岚风的叶子阅读 389评论 0 0
  • 上午11点仓库送走了年前的最后一批包裹,剩下的来不及包装的货只能等到年后发出了。快递停运了,这下真真是无事可做了。...
    离曦问路阅读 209评论 6 1