added config files for vscode
parent
3f72911030
commit
e378fe9ac6
|
|
@ -0,0 +1,5 @@
|
||||||
|
Downloads ~/Downloads
|
||||||
|
Go ~/projects/go/src/github.com
|
||||||
|
Home ~/
|
||||||
|
Work ~/projects/work
|
||||||
|
Projects ~/projects
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Place your key bindings in this file to overwrite the defaults
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+alt+y",
|
||||||
|
"command": "extension.vim_ctrl+y",
|
||||||
|
"when": "editorTextFocus && vim.active && vim.use<C-y> && !inDebugRepl"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+y",
|
||||||
|
"command": "-extension.vim_ctrl+y",
|
||||||
|
"when": "editorTextFocus && vim.active && vim.use<C-y> && !inDebugRepl"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+y",
|
||||||
|
"command": "redo",
|
||||||
|
"when": "editorTextFocus && !editorReadonly"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+y",
|
||||||
|
"command": "-redo",
|
||||||
|
"when": "editorTextFocus && !editorReadonly"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+w",
|
||||||
|
"command": "-extension.vim_ctrl+w",
|
||||||
|
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+w",
|
||||||
|
"command": "-workbench.action.closeWindow",
|
||||||
|
"when": "!editorIsOpen"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"editor.renderWhitespace": "boundary",
|
||||||
|
"editor.fontFamily": "'Fira Code Retina:style=Retina', 'PragmataPro', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
|
||||||
|
"editor.fontLigatures": true,
|
||||||
|
"editor.hideCursorInOverviewRuler": true,
|
||||||
|
"editor.rulers": [120],
|
||||||
|
"eslint.alwaysShowStatus": true,
|
||||||
|
"eslint.autoFixOnSave": true,
|
||||||
|
"eslint.enable": true,
|
||||||
|
"files.autoSave": "onFocusChange",
|
||||||
|
"git.enableCommitSigning": true,
|
||||||
|
"go.testOnSave": true,
|
||||||
|
"go.lintOnSave": "package",
|
||||||
|
"go.autocompleteUnimportedPackages": false,
|
||||||
|
"go.formatTool": "goreturns",
|
||||||
|
"prettier.requireConfig": true,
|
||||||
|
"window.openFilesInNewWindow": "on",
|
||||||
|
"telemetry.enableTelemetry": false,
|
||||||
|
"vim.leader": ",",
|
||||||
|
"vim.surround": true,
|
||||||
|
"vim.useSystemClipboard": true,
|
||||||
|
"workbench.colorTheme": "Monokai Dimmed",
|
||||||
|
"window.zoomLevel": 2,
|
||||||
|
"workbench.activityBar.visible": true,
|
||||||
|
"workbench.editor.enablePreview": false,
|
||||||
|
"workbench.editor.enablePreviewFromQuickOpen": false,
|
||||||
|
"explorer.confirmDragAndDrop": false,
|
||||||
|
"explorer.confirmDelete": false
|
||||||
|
}
|
||||||
|
|
@ -22,7 +22,7 @@ git://github.com/cakebaker/scss-syntax.vim.git
|
||||||
git://github.com/gorodinskiy/vim-coloresque.git
|
git://github.com/gorodinskiy/vim-coloresque.git
|
||||||
git://github.com/tpope/vim-dispatch.git
|
git://github.com/tpope/vim-dispatch.git
|
||||||
git://github.com/scrooloose/syntastic.git
|
git://github.com/scrooloose/syntastic.git
|
||||||
git://github.com/OmniSharp/omnisharp-vim.git
|
|
||||||
git://github.com/kien/ctrlp.vim.git
|
git://github.com/kien/ctrlp.vim.git
|
||||||
git://github.com/Valloric/YouCompleteMe.git
|
git://github.com/Valloric/YouCompleteMe.git
|
||||||
git://github.com/nathanaelkane/vim-indent-guides.git
|
git://github.com/nathanaelkane/vim-indent-guides.git
|
||||||
|
git://github.com/easymotion/vim-easymotion.git
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue