Created
February 23, 2019 09:21
-
-
Save huenisys/33a334c6755a9d97677b3bc8e69b2c2f to your computer and use it in GitHub Desktop.
VS code settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
updated