update
This commit is contained in:
parent
7a4102e840
commit
4c0797116a
3 changed files with 11 additions and 12 deletions
File diff suppressed because one or more lines are too long
2
init.lua
2
init.lua
|
|
@ -559,7 +559,7 @@ wk.register({
|
||||||
b = { telescope_builtin.buffers, "Find buffers" },
|
b = { telescope_builtin.buffers, "Find buffers" },
|
||||||
h = { telescope_builtin.help_tags, "Find help tags" },
|
h = { telescope_builtin.help_tags, "Find help tags" },
|
||||||
d = { telescope_builtin.diagnostics, "List diagnostics" },
|
d = { telescope_builtin.diagnostics, "List diagnostics" },
|
||||||
r = { require("spectre").toggle, "Replace" },
|
s = { require("spectre").toggle, "Search" },
|
||||||
},
|
},
|
||||||
t = {
|
t = {
|
||||||
name = "Tree",
|
name = "Tree",
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"editor.fontLigatures": true,
|
"editor.fontLigatures": true,
|
||||||
"vim.handleKeys": {
|
// "vim.handleKeys": {
|
||||||
"<C-w>": false
|
// "<C-w>": false
|
||||||
},
|
// },
|
||||||
"editor.fontFamily": "FiraCode Nerd Font",
|
"editor.fontFamily": "FiraCode Nerd Font",
|
||||||
"git.autofetch": true,
|
"git.autofetch": true,
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
|
|
@ -32,21 +32,20 @@
|
||||||
},
|
},
|
||||||
"editor.inlayHints.fontSize": 8,
|
"editor.inlayHints.fontSize": 8,
|
||||||
"editor.inlayHints.padding": true,
|
"editor.inlayHints.padding": true,
|
||||||
"workbench.colorTheme": "Gruvbox Dark Hard",
|
"workbench.colorTheme": "Nightingale",
|
||||||
"gitdoc.autoCommitDelay": 3000,
|
"gitdoc.autoCommitDelay": 3000,
|
||||||
"workbench.iconTheme": "minimalistic-icons",
|
"workbench.iconTheme": "minimalistic-icons",
|
||||||
"[json]": {
|
"[json]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
"editor.renderWhitespace": "all",
|
"editor.renderWhitespace": "all",
|
||||||
"window.menuBarVisibility": "toggle",
|
"window.menuBarVisibility": "hidden",
|
||||||
"workbench.startupEditor": "none",
|
"workbench.startupEditor": "none",
|
||||||
"zenMode.fullScreen": false,
|
"zenMode.fullScreen": false,
|
||||||
"zenMode.centerLayout": false,
|
"editor.rulers": [80],
|
||||||
"editor.rulers": [
|
|
||||||
80
|
|
||||||
],
|
|
||||||
"[jsonc]": {
|
"[jsonc]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
}
|
},
|
||||||
|
"vim.useSystemClipboard": true,
|
||||||
|
"python.languageServer": "None"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue