Skip to content

Instantly share code, notes, and snippets.

@Hikali-47041
Last active June 11, 2023 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hikali-47041/4b45954e39b0e6ed13b47bfa255bd961 to your computer and use it in GitHub Desktop.
Save Hikali-47041/4b45954e39b0e6ed13b47bfa255bd961 to your computer and use it in GitHub Desktop.
VSCode の設定ファイル をかいたJSON file
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+v",
"command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+v",
"command": "-workbench.action.terminal.paste",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
}
]
{
/* Look and feel */
/* Themes */
/* KDE Breeze https://marketplace.visualstudio.com/items?itemName=kde.breeze */
/* Material Icon Theme https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme */
"workbench.colorTheme": "Breeze Dark",
"workbench.iconTheme": "material-icon-theme",
/* Fonts */
/* Share Tech Mono https://fonts.google.com/specimen/Share+Tech+Mono */
/* M Plus 1p https://fonts.google.com/specimen/M+PLUS+1p */
/* komiti https://github.com/Hikali-47041/komiti*/
/* MesloLGS NF https://github.com/romkatv/powerlevel10k */
"editor.fontFamily": "'Share Tech Mono', \"Yomogi\", 'M Plus 1p'",
"terminal.integrated.fontFamily": "'Share Tech Mono', 'M Plus 1p', 'MesloLGS NF'",
"markdown.preview.fontFamily": "komiti, \"Share Tech Mono\"",
"editor.fontSize": 16,
"markdown.preview.fontSize": 15,
"terminal.integrated.fontSize": 20,
/* Custom Colors */
"editor.tokenColorCustomizations": {
"comments": "#bdc3c7e9"
},
"workbench.colorCustomizations": {
"editorLineNumber.foreground": "#eff0f188",
"editor.lineHighlightBackground": "#3daee955",
"editorCursor.foreground":"#e974a3",
"statusBar.border": "#3daee9c0",
"titleBar.activeBackground": "#31363b", /* req: custom title bar enabled */
},
/* Extensions */
/* Material Icons https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme */
"material-icon-theme.folders.color": "#eff0f1",
"material-icon-theme.opacity": 0.8,
/* Glasslt-VSC https://marketplace.visualstudio.com/items?itemName=s-nlf-fh.glassit*/
"glassit.alpha": 225,
/* indent Rainbow https://marketplace.visualstudio.com/items?itemName=oderwat.indent-rainbow */
"indentRainbow.colors": [
"#3DAEE919",
"#1CDC9A19",
"#FDBC4B19",
"#FFC3EA19"
],
"indentRainbow.errorColor": "#DA44539A",
"indentRainbow.tabmixColor": "#8E44AD9A",
"powermode.shake.enabled": false,
"powermode.explosions.frequency": 4,
"powermode.explosions.duration": 500,
"powermode.explosions.size": 5,
"powermode.explosions.offset": 0.44,
"powermode.explosions.maxExplosions": 2,
"powermode.combo.timeout": 0,
"powermode.combo.threshold": 64,
"powermode.combo.location": "statusbar",
/* Theme Misc */
"workbench.editor.highlightModifiedTabs": true,
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"terminal.integrated.smoothScrolling": true,
"window.titleBarStyle": "custom",
"window.menuBarVisibility": "toggle",
/* Cursor */
"editor.cursorBlinking": "phase",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
/* Render */
"editor.renderLineHighlight": "all",
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
/* Editor behavior */
"editor.cursorSurroundingLinesStyle": "all", /* ドラッグで選択できる */
"editor.find.autoFindInSelection": "multiline",
"editor.tabCompletion": "onlySnippets",
"editor.minimap.size": "fill",
"workbench.editor.untitled.hint": "hidden", /* 新規ファイルを作った際に拡張子云々聞いてくるやつ */
"breadcrumbs.enabled": true,
"window.zoomLevel": -1,
/* File Settings */
"files.autoSave": "onFocusChange",
"files.eol": "\n",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
/* Explorer */
"explorer.confirmDragAndDrop": true,
/* Diff */
"diffEditor.ignoreTrimWhitespace": false,
/* Terminal */
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.enableBell": true,
"terminal.integrated.scrollback": 2500,
"terminal.integrated.rightClickBehavior": "copyPaste",
"terminal.integrated.confirmOnExit": "hasChildProcesses",
"terminal.integrated.defaultProfile.linux": "zsh",
/* Git */
"git.autofetch": true,
"git.ignoreMissingGitWarning": true,
/* Markdown */
"markdown.preview.lineHeight": 1.667,
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
},
/* Extensions */
/* Discord Presence https://marketplace.visualstudio.com/items?itemName=icrawl.discord-vscode */
"discord.lowerDetailsIdling": "( ˘ω˘)スヤァ…",
"discord.lowerDetailsEditing": "{current_line}/{total_lines} Lines | {file_size}",
"discord.lowerDetailsNoWorkspaceFound": "{file_size} | {current_line}/{total_lines} Lines",
"discord.detailsIdling": "にゃーん",
/* Simple Search https://marketplace.visualstudio.com/items?itemName=burcadoruciprian.simple-search */
"simpleSearch.QueryTemplate": "https://duckduckgo.com/?q=%SELECTION%",
/* LaTeX Workshop https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop */
"workbench.editorAssociations": {
"*.pdf": "latex-workshop-pdf-hook"
},
"latex-workshop.bibtex-format.tab": "4 spaces",
"latex-workshop.view.pdf.viewer": "browser",
"latex-workshop.latex.autoBuild.run": "never",
/* Java */
"java.autobuild.enabled": false,
"java.completion.enabled": false,
/* Translation */
"translation.target-language": "ja",
"translation.simple-display-mode": "statusBar",
/* Hex Editor https://marketplace.visualstudio.com/items?itemName=ms-vscode.hexeditor */
"hexeditor.columnWidth": 16,
"hexeditor.showDecodedText": true,
"hexeditor.defaultEndianness": "little",
"hexeditor.inspectorType": "aside",
/* VSCode Misc Disabled */
"workbench.startupEditor": "none",
"workbench.enableExperiments": false,
"extensions.ignoreRecommendations": true,
/* Security */
"security.workspace.trust.emptyWindow": false,
"security.workspace.trust.enabled": false,
"workbench.editor.labelFormat": "short",
"terminal.integrated.shellIntegration.decorationsEnabled": "overviewRuler",
"telemetry.telemetryLevel": "crash",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment