LoginSignup
0
0

More than 3 years have passed since last update.

vs-code mysetting

Posted at
"files.associations": {
    "*.erb": "erb"
},
"emmet.includeLanguages": {
    "erb": "html"
},
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"workbench.activityBar.visible": true
"files.eol": "\n",
"vim.vimrc.enable": true,
"vim.vimrc.path": "c:\\Users\\hirok\\.vimrc",
"vim.useSystemClipboard":true,
"vim.hlsearch": true,
"vim.easymotion": true,
"vim.easymotionKeys": "hksdgjf",
"vim.normalModeKeyBindingsNonRecursive": [
    {
        "before": ["f"],
        "after": ["leader", "leader", "s"],
    },
    {
        "before": ["<Esc>"],
        "commands": [":nohl"]
    },
    {
        "before": ["p"],
        "after": ["\"", "0", "P"],
    },
    {
        "before": [">"],
        "after": [">", "g", "v"]
    },
    {
        "before": ["<"],
        "after": ["<", "g", "v"]
    },
    {
        "before": [";"],
        "after": [":"]
    }
],
"vim.insertModeKeyBindings": [
    {
        "before": ["j","j"],
        "after": ["<Esc>"]
    }
],
"vim.visualstar": true,
"vim.useCtrlKeys": true,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": true,
"files.trimTrailingWhitespace": true,
"editor.copyWithSyntaxHighlighting": false,
"vim.leader": "<space>",
"workbench.editor.enablePreview": false,
// Vimのモードごとで色を変える設定
"vim.statusBarColorControl": false,
"workbench.colorCustomizations": {
    "statusBar.background": "#8FBCBB",
    "statusBar.noFolderBackground": "#8FBCBB",
    "statusBar.debuggingBackground": "#8FBCBB",
    "statusBar.foreground": "#434C5E"
},
"editor.fontSize": 14,
"workbench.editor.enablePreviewFromQuickOpen": false,
// 色を変える設定 ここまで
"ruby.intellisense": "rubyLocate",
"workbench.colorTheme": "Monokai",
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0