this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update vscode extensions + settings

Also remove recurseSubmodules=false for git fetch

+10 -8
+2 -3
.config/vscode/extensions.txt
··· 10 10 dunstontc.viml@0.1.7 11 11 eamodio.gitlens@10.2.1 12 12 fabiospampinato.vscode-statusbar-debugger@2.0.6 13 + golang.Go@0.14.4 13 14 IBM.output-colorizer@0.1.2 14 15 jeff-hykin.better-cpp-syntax@1.14.31 15 16 korekontrol.saltstack@0.0.8 ··· 19 20 marko2276.yang@0.1.3 20 21 matklad.rust-analyzer@0.2.199 21 22 ms-azuretools.vscode-docker@1.2.1 22 - ms-dotnettools.csharp@1.22.0 23 23 ms-python.python@2020.5.80290 24 24 ms-vscode-remote.remote-ssh@0.51.0 25 25 ms-vscode-remote.remote-ssh-edit@0.51.0 26 26 ms-vscode.cmake-tools@1.4.0 27 - ms-vscode.cpptools@0.28.2 28 - ms-vscode.Go@0.14.3 27 + ms-vscode.cpptools@0.28.3 29 28 ms-vscode.vscode-typescript-tslint-plugin@1.2.3 30 29 ms-vsliveshare.vsliveshare@1.0.2274 31 30 ms-vsliveshare.vsliveshare-pack@0.4.0
-4
.gitconfig
··· 41 41 recurse = true 42 42 [push] 43 43 recurseSubmodules = check 44 - [fetch] 45 - recurseSubmodules = false 46 - [pull] 47 - rebase = false
+6
Library/Application Support/Code/User/keybindings.json
··· 268 268 "when": "editorTextFocus && neovim.mode != 'insert'", 269 269 "args": "\"+ygv", 270 270 }, 271 + { 272 + "key": "cmd+shift+p", 273 + "command": "vscode-neovim.send", 274 + "when": "editorTextFocus && neovim.mode == 'visual'", 275 + "args": "<C-P>", 276 + }, 271 277 // ========================================================================= 272 278 // End bindings for vscode-neovim 273 279 // =========================================================================
+2 -1
Library/Application Support/Code/User/settings.json
··· 373 373 "Folded", 374 374 "FoldColumn", 375 375 ], 376 - "vscode-neovim.mouseSelectionStartVisualMode": true, 376 + // Mouse selection seems to cause more problems than it's worth... 377 + // "vscode-neovim.mouseSelectionStartVisualMode": true, 377 378 "vscode-neovim.neovimExecutablePaths.darwin": "/usr/local/bin/nvim", 378 379 "vscode-neovim.neovimInitPath": "~/.vimrc", 379 380 "vscode-neovim.neovimPath": "/usr/local/bin/nvim",