Initial commit

This commit is contained in:
2020-07-19 06:21:35 +09:00
commit d8c099804f
25 changed files with 6680 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
{
"editor.fontFamily": "'TerminessTTF Nerd Font Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.tabSize": 2,
"explorer.confirmDelete": false,
"workbench.sideBar.location": "right",
"vim.neovimPath": "/usr/bin/nvim",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"vim.useSystemClipboard": true,
"files.autoGuessEncoding": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[rust]": {
"editor.tabSize": 4
},
"[c]": {
"editor.wordBasedSuggestions": false,
"editor.suggest.insertMode": "replace"
},
"[cpp]": {
"editor.wordBasedSuggestions": false,
"editor.suggest.insertMode": "replace"
},
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "yarn",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Twilight",
"workbench.colorCustomizations": {
"statusBar.noFolderBackground": "#dd5555",
"statusBar.background": "#dd5555",
"list.activeSelectionBackground": "#dd5555",
"badge.background": "#dd5555",
"activityBarBadge.background": "#dd5555",
"menu.background": "#dd5555",
"list.focusBackground": "#dd5555",
"activityBar.activeBorder": "#dd5555",
"activityBar.foreground": "#dd5555",
"activityBar.inactiveForeground": "#fff",
"focusBorder": "#dd5555",
"button.background": "#dd5555",
"textLink.foreground": "#dd5555",
"extensionButton.prominentBackground": "#dd5555",
"terminal.foreground": "#d0d0d0",
"terminal.background": "#212121",
"terminal.ansiBlack": "#151515",
"terminal.ansiBlue": "#6c99bb",
"terminal.ansiCyan": "#7dd6cf",
"terminal.ansiGreen": "#7e8e50",
"terminal.ansiMagenta": "#9f4e85",
"terminal.ansiRed": "#ac4142",
"terminal.ansiWhite": "#d0d0d0",
"terminal.ansiYellow": "#e5b567",
"terminal.ansiBrightBlack": "#505050",
"terminal.ansiBrightBlue": "#6c99bb",
"terminal.ansiBrightCyan": "#7dd6cf",
"terminal.ansiBrightGreen": "#7e8e50",
"terminal.ansiBrightMagenta": "#9f4e85",
"terminal.ansiBrightRed": "#ac4142",
"terminal.ansiBrightWhite": "#f5f5f5",
"terminal.ansiBrightYellow": "#e5b567"
},
"editor.formatOnSave": true,
"vim.enableNeovim": true,
"vim.useCtrlKeys": false,
"editor.fontSize": 16
}