Skip to content

Instantly share code, notes, and snippets.

@nauvalazhar
Created January 14, 2022 13:53
Show Gist options
  • Save nauvalazhar/8cba96529bcd5896d664ff9d8a17dc47 to your computer and use it in GitHub Desktop.
Save nauvalazhar/8cba96529bcd5896d664ff9d8a17dc47 to your computer and use it in GitHub Desktop.
{
"workbench.editor.showTabs": false,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": false
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindings": [
{
"before": ["<C-h>"],
"commands": [":tabp"]
},
{
"before": ["<C-l>"],
"commands": [":tabn"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["u"],
"after": [],
"commands": [
{
"command": "undo"
}
]
},
{
"before": ["<C-r>"],
"after": [],
"commands": [
{
"command": "redo"
}
]
}
],
"editor.minimap.enabled": false,
"editor.lineNumbers": "relative",
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"workbench.startupEditor": "none",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.colorDecorators": false,
"blade.format.enable": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"window.zoomLevel": 2,
"workbench.colorTheme": "GitHub Dark",
"workbench.editor.untitled.hint": "hidden",
"workbench.activityBar.visible": false,
"[blade]": {
"editor.defaultFormatter": "onecentlin.laravel-blade"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment