Skip to content

Instantly share code, notes, and snippets.

@huenisys
Created February 23, 2019 09:21
Show Gist options
  • Save huenisys/33a334c6755a9d97677b3bc8e69b2c2f to your computer and use it in GitHub Desktop.
Save huenisys/33a334c6755a9d97677b3bc8e69b2c2f to your computer and use it in GitHub Desktop.
VS code settings
{
"workbench.iconTheme": "vscode-icons",
"terminal.integrated.shell.windows": "E:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": [
"--login", "-i"
],
"php.validate.executablePath": "E:\\xampp\\php\\php.exe",
"editor.fontSize": 12,
"git.autofetch": true,
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<C-n>"],
"commands": [":nohl"]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"editor.minimap.enabled": true,
"editor.renderWhitespace": "all",
"phpcs.enable": false,
"phpcs.showWarnings": false,
"phpcs.standard": false,
"workbench.editor.labelFormat": "short",
"terminal.integrated.rendererType": "dom",
"editor.wordWrap": "on",
"editor.autoIndent": false
}
@huenisys
Copy link
Author

huenisys commented Mar 4, 2020

updated

  "vim.easymotion": true,
  "vim.sneak": true,
  "vim.useSystemClipboard": true,
  "vim.useCtrlKeys": true,
  "vim.hlsearch": true,
  "vim.insertModeKeyBindings": [
      {
          "before": ["j", "j"],
          "after": ["<Esc>"]
      }
  ],
  "vim.normalModeKeyBindingsNonRecursive": [
      {
          "before": ["<leader>", "d"],
          "after": ["d", "d"]
      },
      {
          "before": ["<C-n>"],
          "commands": [":nohl"]
      }
  ],
  "vim.leader": "<space>",
  "vim.handleKeys": {
      "<C-a>": false,
      "<C-f>": false
  },
  "terminal.integrated.shell.windows": "E:\\Program Files\\Git\\bin\\bash.exe",
  "terminal.integrated.shellArgs.windows": [
    "--login", "-i"
  ],
  "editor.fontSize": 12,
  "terminal.integrated.fontSize": 12,
  "workbench.editor.labelFormat": "short",
  "editor.wordWrap": "on",
  "editor.renderWhitespace": "all",
  "emmet.triggerExpansionOnTab": true,
  "git.autofetch": true,
  "git.confirmSync": false
}```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment