regular backup
This commit is contained in:
parent
99020d982a
commit
8bc4aa5a2b
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
"editor.cursorBlinking": "solid",
|
"editor.cursorBlinking": "solid",
|
||||||
"remoteHub.commitDirectlyWarning": "off",
|
"remoteHub.commitDirectlyWarning": "off",
|
||||||
"workbench.colorTheme": "Melange Redux: Dark",
|
|
||||||
"files.autoSave": "afterDelay",
|
"files.autoSave": "afterDelay",
|
||||||
"terminal.integrated.profiles.windows": {
|
"terminal.integrated.profiles.windows": {
|
||||||
"PowerShell": {
|
"PowerShell": {
|
||||||
|
@ -19,13 +18,6 @@
|
||||||
"Git Bash": {
|
"Git Bash": {
|
||||||
"source": "Git Bash"
|
"source": "Git Bash"
|
||||||
},
|
},
|
||||||
"Ubuntu-22.04 (WSL)": {
|
|
||||||
"path": "C:\\WINDOWS\\System32\\wsl.exe",
|
|
||||||
"args": [
|
|
||||||
"-d",
|
|
||||||
"Ubuntu-22.04"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"terminal.integrated.defaultProfile.windows": "Command Prompt",
|
"terminal.integrated.defaultProfile.windows": "Command Prompt",
|
||||||
"git.enableSmartCommit": true,
|
"git.enableSmartCommit": true,
|
||||||
|
@ -35,6 +27,9 @@
|
||||||
"editor.accessibilitySupport": "off",
|
"editor.accessibilitySupport": "off",
|
||||||
"editor.autoClosingOvertype": "always",
|
"editor.autoClosingOvertype": "always",
|
||||||
"editor.fontFamily": "'BerkeleyMono Nerd Font', 'FiraCode Nerd Font', Consolas, 'Courier New', monospace",
|
"editor.fontFamily": "'BerkeleyMono Nerd Font', 'FiraCode Nerd Font', Consolas, 'Courier New', monospace",
|
||||||
|
"editor.fontWeight": "normal",
|
||||||
|
"editor.lineHeight": 18,
|
||||||
|
"editor.letterSpacing": 0.2,
|
||||||
"editor.wordWrap": "on",
|
"editor.wordWrap": "on",
|
||||||
"editor.lineNumbers": "relative",
|
"editor.lineNumbers": "relative",
|
||||||
"terminal.integrated.fontLigatures": true,
|
"terminal.integrated.fontLigatures": true,
|
||||||
|
@ -75,7 +70,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"before": [ "K" ],
|
"before": [ "K" ],
|
||||||
"commands": [ "editor.action.triggerParameterHints" ],
|
"commands": [ "editor.action.showDefinitionPreviewHover" ],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"before": [ "<leader>", "p" ],
|
"before": [ "<leader>", "p" ],
|
||||||
|
@ -96,9 +91,35 @@
|
||||||
{
|
{
|
||||||
"before": [ "g", "p", "d" ],
|
"before": [ "g", "p", "d" ],
|
||||||
"commands": [ "editor.action.peekDefinition" ],
|
"commands": [ "editor.action.peekDefinition" ],
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-j>" ],
|
||||||
|
"commands": [ "editor.action.moveLinesDownAction" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-k>" ],
|
||||||
|
"commands": [ "editor.action.moveLinesUpAction" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<leader>", "x" ],
|
||||||
|
"commands": [ "editor.action.trimTrailingWhitespace" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<leader>", "a" ],
|
||||||
|
"commands": [ "editor.action.quickFix" ],
|
||||||
|
},
|
||||||
|
|
||||||
],
|
],
|
||||||
|
"vim.normalModeKeyBindingsNonRecursive": [
|
||||||
|
{
|
||||||
|
"before": [ "Q" ],
|
||||||
|
"after": [ "q" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "q" ],
|
||||||
|
"commands": [ "editor.action.marker.next" ]
|
||||||
|
}
|
||||||
|
],
|
||||||
"vim.insertModeKeyBindings": [
|
"vim.insertModeKeyBindings": [
|
||||||
{
|
{
|
||||||
"before": [ "j", "k" ],
|
"before": [ "j", "k" ],
|
||||||
|
@ -138,6 +159,18 @@
|
||||||
"before": [ "<leader>", "c", "c" ],
|
"before": [ "<leader>", "c", "c" ],
|
||||||
"commands": [ "codesnap.start" ]
|
"commands": [ "codesnap.start" ]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-j>" ],
|
||||||
|
"commands": [ "editor.action.moveLinesDownAction" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<C-k>" ],
|
||||||
|
"commands": [ "editor.action.moveLinesUpAction" ],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"before": [ "<leader>", "h" ],
|
||||||
|
"after": [ "<leader>", "<leader>", "<leader>", "b", "d", "w" ],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
"editor.minimap.enabled": false,
|
"editor.minimap.enabled": false,
|
||||||
"vim.useSystemClipboard": true,
|
"vim.useSystemClipboard": true,
|
||||||
|
@ -180,4 +213,10 @@
|
||||||
"vim.showMarksInGutter": true,
|
"vim.showMarksInGutter": true,
|
||||||
"zenMode.hideLineNumbers": false,
|
"zenMode.hideLineNumbers": false,
|
||||||
"zenMode.hideStatusBar": false,
|
"zenMode.hideStatusBar": false,
|
||||||
|
// "editor.experimentalGpuAcceleration": "on",
|
||||||
|
"workbench.colorTheme": "Melange Redux: Dark",
|
||||||
|
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, TabWidth: 4}",
|
||||||
|
"C_Cpp.clang_format_style": "",
|
||||||
|
"C_Cpp.formatting": "vcFormat",
|
||||||
|
"C_Cpp.intelliSenseEngine": "disabled",
|
||||||
}
|
}
|
Loading…
Reference in New Issue