|
@@ -4,6 +4,7 @@
|
|
"vscode-neovim.neovimInitVimPaths.darwin": "$HOME/.config/nvim/init.vim",
|
|
"vscode-neovim.neovimInitVimPaths.darwin": "$HOME/.config/nvim/init.vim",
|
|
"vscode-neovim.neovimInitVimPaths.linux": "$HOME/.config/nvim/init.vim",
|
|
"vscode-neovim.neovimInitVimPaths.linux": "$HOME/.config/nvim/init.vim",
|
|
"whichkey.sortOrder": "alphabetically",
|
|
"whichkey.sortOrder": "alphabetically",
|
|
|
|
+ "whichkey.delay": 0,
|
|
"whichkey.bindings": [
|
|
"whichkey.bindings": [
|
|
{
|
|
{
|
|
"key": ";",
|
|
"key": ";",
|
|
@@ -285,6 +286,18 @@
|
|
"type": "command",
|
|
"type": "command",
|
|
"command": "git.deleteBranch"
|
|
"command": "git.deleteBranch"
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ "key": "f",
|
|
|
|
+ "name": "Fetch",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "git.fetch"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "F",
|
|
|
|
+ "name": "Pull From",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "git.pullFrom"
|
|
|
|
+ },
|
|
{
|
|
{
|
|
"key": "g",
|
|
"key": "g",
|
|
"name": "Graph",
|
|
"name": "Graph",
|
|
@@ -298,16 +311,10 @@
|
|
"command": "gitlens.toggleFileHeatmap"
|
|
"command": "gitlens.toggleFileHeatmap"
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- "key": "f",
|
|
|
|
- "name": "Fetch",
|
|
|
|
- "type": "command",
|
|
|
|
- "command": "git.fetch"
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- "key": "F",
|
|
|
|
- "name": "Pull From",
|
|
|
|
|
|
+ "key": "H",
|
|
|
|
+ "name": "History",
|
|
"type": "command",
|
|
"type": "command",
|
|
- "command": "git.pullFrom"
|
|
|
|
|
|
+ "command": "git.viewFileHistory"
|
|
},
|
|
},
|
|
{
|
|
{
|
|
"key": "i",
|
|
"key": "i",
|
|
@@ -315,6 +322,18 @@
|
|
"type": "command",
|
|
"type": "command",
|
|
"command": "git.init"
|
|
"command": "git.init"
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ "key": "j",
|
|
|
|
+ "name": "Next Change",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "workbench.action.editor.nextChange"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "k",
|
|
|
|
+ "name": "Previous Change",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "workbench.action.editor.previousChange"
|
|
|
|
+ },
|
|
{
|
|
{
|
|
"key": "l",
|
|
"key": "l",
|
|
"name": "Toggle Line Blame",
|
|
"name": "Toggle Line Blame",
|
|
@@ -533,13 +552,13 @@
|
|
},
|
|
},
|
|
{
|
|
{
|
|
"key": "s",
|
|
"key": "s",
|
|
- "name": "Go to Symbol (Editor)",
|
|
|
|
|
|
+ "name": "Go To Symbol",
|
|
"type": "command",
|
|
"type": "command",
|
|
"command": "workbench.action.gotoSymbol"
|
|
"command": "workbench.action.gotoSymbol"
|
|
},
|
|
},
|
|
{
|
|
{
|
|
"key": "S",
|
|
"key": "S",
|
|
- "name": "Go to Symbol (Workspace)",
|
|
|
|
|
|
+ "name": "Show All Symbols",
|
|
"type": "command",
|
|
"type": "command",
|
|
"command": "workbench.action.showAllSymbols"
|
|
"command": "workbench.action.showAllSymbols"
|
|
}
|
|
}
|
|
@@ -547,6 +566,59 @@
|
|
},
|
|
},
|
|
{
|
|
{
|
|
"key": "m",
|
|
"key": "m",
|
|
|
|
+ "name": "Mark...",
|
|
|
|
+ "type": "bindings",
|
|
|
|
+ "bindings": [
|
|
|
|
+ {
|
|
|
|
+ "key": "c",
|
|
|
|
+ "name": "Clear Bookmarks",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "bookmarks.clear"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "j",
|
|
|
|
+ "name": "Next Bookmark",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "bookmarks.jumpToNext",
|
|
|
|
+ "when": "editorTextFocus"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "k",
|
|
|
|
+ "name": "Previous Bookmark",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "bookmarks.jumpToPrevious",
|
|
|
|
+ "when": "editorTextFocus"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "l",
|
|
|
|
+ "name": "List Bookmarks",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "bookmarks.listFromAllFiles",
|
|
|
|
+ "when": "editorTextFocus"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "r",
|
|
|
|
+ "name": "Refresh Bookmarks",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "bookmarks.refresh"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "t",
|
|
|
|
+ "name": "Toggle Bookmark",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "bookmarks.toggle",
|
|
|
|
+ "when": "editorTextFocus"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "s",
|
|
|
|
+ "name": "Show Bookmarks",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "workbench.view.extension.bookmarks"
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "M",
|
|
"name": "Minimap",
|
|
"name": "Minimap",
|
|
"type": "command",
|
|
"type": "command",
|
|
"command": "editor.action.toggleMinimap"
|
|
"command": "editor.action.toggleMinimap"
|
|
@@ -558,6 +630,31 @@
|
|
"command": "vscode-neovim.send",
|
|
"command": "vscode-neovim.send",
|
|
"args": ":noh<CR>"
|
|
"args": ":noh<CR>"
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ "key": "o",
|
|
|
|
+ "name": "Open...",
|
|
|
|
+ "type": "bindings",
|
|
|
|
+ "bindings": [
|
|
|
|
+ {
|
|
|
|
+ "key": "d",
|
|
|
|
+ "name": "Directory",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "workbench.action.files.openFolder"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "r",
|
|
|
|
+ "name": "Recent",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "workbench.action.openRecent"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ "key": "f",
|
|
|
|
+ "name": "File",
|
|
|
|
+ "type": "command",
|
|
|
|
+ "command": "workbench.action.files.openFile"
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
{
|
|
{
|
|
"key": "p",
|
|
"key": "p",
|
|
"name": "Peek...",
|
|
"name": "Peek...",
|
|
@@ -705,7 +802,7 @@
|
|
]
|
|
]
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- "key": "U",
|
|
|
|
|
|
+ "key": "u",
|
|
"name": "UI toggles...",
|
|
"name": "UI toggles...",
|
|
"type": "bindings",
|
|
"type": "bindings",
|
|
"bindings": [
|
|
"bindings": [
|
|
@@ -875,18 +972,18 @@
|
|
"gitlens.hovers.currentLine.over": "line",
|
|
"gitlens.hovers.currentLine.over": "line",
|
|
"editor.suggestSelection": "first",
|
|
"editor.suggestSelection": "first",
|
|
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
|
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
|
- "python.pythonPath": "/Users/chris/.miniconda/bin/python",
|
|
|
|
|
|
+ "python.pythonPath": "/home/chris/.miniconda/envs/ds/bin/python",
|
|
"java.semanticHighlighting.enabled": true,
|
|
"java.semanticHighlighting.enabled": true,
|
|
- "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -javaagent:\"/Users/chris/.vscode-oss/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\"",
|
|
|
|
|
|
+ "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -javaagent:\"/home/chris/.vscode-oss/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\"",
|
|
"workbench.list.automaticKeyboardNavigation": false,
|
|
"workbench.list.automaticKeyboardNavigation": false,
|
|
"oneDarkPro.editorTheme": "onedarkPro",
|
|
"oneDarkPro.editorTheme": "onedarkPro",
|
|
- "python.languageServer": "Microsoft",
|
|
|
|
|
|
+ "python.languageServer": "Pylance",
|
|
"editor.scrollbar.horizontal": "hidden",
|
|
"editor.scrollbar.horizontal": "hidden",
|
|
"editor.scrollbar.vertical": "hidden",
|
|
"editor.scrollbar.vertical": "hidden",
|
|
"kite.showWelcomeNotificationOnStartup": false,
|
|
"kite.showWelcomeNotificationOnStartup": false,
|
|
"python.terminal.activateEnvironment": false,
|
|
"python.terminal.activateEnvironment": false,
|
|
"editor.cursorBlinking": "solid",
|
|
"editor.cursorBlinking": "solid",
|
|
- "editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace",
|
|
|
|
|
|
+ "editor.fontFamily": "FiraCode Nerd Font Mono, Hack, Menlo, Monaco, 'Courier New', monospace",
|
|
"files.exclude": {
|
|
"files.exclude": {
|
|
"**/.classpath": true,
|
|
"**/.classpath": true,
|
|
"**/.project": true,
|
|
"**/.project": true,
|
|
@@ -895,19 +992,24 @@
|
|
},
|
|
},
|
|
"terminal.external.osxExec": "iTerm.app",
|
|
"terminal.external.osxExec": "iTerm.app",
|
|
"editor.minimap.enabled": false,
|
|
"editor.minimap.enabled": false,
|
|
- "workbench.activityBar.visible": false,
|
|
|
|
|
|
+ "workbench.activityBar.visible": true,
|
|
"leetcode.workspaceFolder": "/Users/chris/Repos/leetcode",
|
|
"leetcode.workspaceFolder": "/Users/chris/Repos/leetcode",
|
|
"leetcode.defaultLanguage": "javascript",
|
|
"leetcode.defaultLanguage": "javascript",
|
|
"leetcode.hint.configWebviewMarkdown": false,
|
|
"leetcode.hint.configWebviewMarkdown": false,
|
|
"leetcode.hint.commentDescription": false,
|
|
"leetcode.hint.commentDescription": false,
|
|
- "window.zoomLevel": 3,
|
|
|
|
|
|
+ "window.zoomLevel": 2,
|
|
"window.menuBarVisibility": "toggle",
|
|
"window.menuBarVisibility": "toggle",
|
|
"python.dataScience.alwaysTrustNotebooks": true,
|
|
"python.dataScience.alwaysTrustNotebooks": true,
|
|
"python.condaPath": "$HOME/.miniconda/bin/conda",
|
|
"python.condaPath": "$HOME/.miniconda/bin/conda",
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.provider": "black",
|
|
- "python.insidersChannel": "daily",
|
|
|
|
|
|
+ "python.insidersChannel": "off",
|
|
"terminal.integrated.shell.linux": "/bin/zsh",
|
|
"terminal.integrated.shell.linux": "/bin/zsh",
|
|
"terminal.external.linuxExec": "/usr/bin/alacritty",
|
|
"terminal.external.linuxExec": "/usr/bin/alacritty",
|
|
|
|
+ "code-runner.executorMap": {
|
|
|
|
+ "python": "$pythonPath $fileName",
|
|
|
|
+ "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
|
|
|
|
+ "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
|
|
|
|
+ },
|
|
"editor.tokenColorCustomizations": {
|
|
"editor.tokenColorCustomizations": {
|
|
"[One Dark Pro]": {
|
|
"[One Dark Pro]": {
|
|
"textMateRules": [
|
|
"textMateRules": [
|
|
@@ -1014,5 +1116,13 @@
|
|
"gitlens.currentLine.enabled": false,
|
|
"gitlens.currentLine.enabled": false,
|
|
"[javascript]": {
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ "emmet.showSuggestionsAsSnippets": true,
|
|
|
|
+ "material-icon-theme.showWelcomeMessage": false,
|
|
|
|
+ "gitlens.codeLens.enabled": false,
|
|
|
|
+ "workbench.iconTheme": "material-icon-theme",
|
|
|
|
+ "git.autofetch": true,
|
|
|
|
+ "workbench.startupEditor": "newUntitledFile",
|
|
|
|
+ "python.showStartPage": false,
|
|
|
|
+ "editor.snippetSuggestions": "bottom"
|
|
}
|
|
}
|