vs code 配置項(xiàng)(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",
    //  #讓函數(shù)(名)和后面的括號(hào)之間加個(gè)空格
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    // #每次保存的時(shí)候?qū)⒋a按eslint格式進(jìn)行修復(fù)
    "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",
  //  #讓函數(shù)(名)和后面的括號(hào)之間加個(gè)空格
  "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  // #這個(gè)按用戶(hù)自身習(xí)慣選擇
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  // #讓vue中的js按編輯器自帶的ts格式進(jìn)行格式化
  "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
    }
  },
  // #每次保存的時(shí)候?qū)⒋a按eslint格式進(jìn)行修復(fù)
  "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, // 保留分號(hào)
            "singleQuote": true, // 使用單引號(hào)
            "jsxBracketSameLine": true, // 將 > 多行JSX元素放在最后一行的末尾, 而不是單獨(dú)放在下一行
            "arrowParens": "always" // 要求箭頭函數(shù)的參數(shù)使用圓括號(hào)
        },
        "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路徑移動(dòng)或重命名時(shí),自動(dòng)更新
    "javascript.updateImportsOnFileMove.enabled": "always",
    // 匿名函數(shù)后加空格
    "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    // 函數(shù)名后加空格
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,

    /*--------- 第三方插件設(shè)置 ----------*/
    // eslint保存時(shí)自動(dòng)修復(fù)
    "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",

    /*--------- 主題、界面設(shè)置 ----------*/
    // 工作區(qū)顏色自定義
    "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"
    },
    // 工作區(qū)
    "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, // 保留分號(hào)
            "singleQuote": true, // 使用單引號(hào)
            "jsxBracketSameLine": true, // 將 > 多行JSX元素放在最后一行的末尾, 而不是單獨(dú)放在下一行
            "arrowParens": "always" // 要求箭頭函數(shù)的參數(shù)使用圓括號(hào)
        },
        "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路徑移動(dòng)或重命名時(shí),自動(dòng)更新
    "javascript.updateImportsOnFileMove.enabled": "always",
    // 匿名函數(shù)后加空格
    "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
    // 函數(shù)名后加空格
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    /*--------- 第三方插件設(shè)置 ----------*/
    // eslint保存時(shí)自動(dòng)修復(fù)
    "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,
    /*--------- 主題、界面設(shè)置 ----------*/
    // 工作區(qū)顏色自定義
    "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"
    },
    // 工作區(qū)
    "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
}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • // 將設(shè)置放入此文件中以覆蓋默認(rèn)設(shè)置{// 控制是否顯示 minimap"editor.minimap.enab...
    小線亮亮閱讀 2,235評(píng)論 0 0
  • This project was bootstrapped with Create React App. Belo...
    unspecx閱讀 5,311評(píng)論 0 2
  • 被逼出來(lái)的成熟 曾聲飛哭的時(shí)候沒(méi)人哄,我學(xué)會(huì)了堅(jiān)強(qiáng); 哭的時(shí)候沒(méi)人哄,我學(xué)會(huì)了堅(jiān)強(qiáng); 怕的時(shí)候沒(méi)人陪,我學(xué)會(huì)了勇敢...
    清酒無(wú)歡閱讀 255評(píng)論 0 0
  • 古詩(shī)十九首(之十)迢迢牽牛星,皎皎河漢女,纖纖擢素手,札札弄機(jī)杼。終日不成章,涕泣零如雨。河漢清且淺,相去復(fù)幾許,...
    嵐風(fēng)的葉子閱讀 419評(píng)論 0 0
  • 上午11點(diǎn)倉(cāng)庫(kù)送走了年前的最后一批包裹,剩下的來(lái)不及包裝的貨只能等到年后發(fā)出了。快遞停運(yùn)了,這下真真是無(wú)事可做了。...
    離曦問(wèn)路閱讀 288評(píng)論 6 1

友情鏈接更多精彩內(nèi)容