add some keymaps for vscode scenario

This commit is contained in:
2025-04-15 23:27:19 +08:00
parent 1a4f3d6c3a
commit 82a7282861
17 changed files with 610 additions and 133 deletions

View File

@@ -10,9 +10,3 @@ if vim.loop.os_uname().sysname == "Windows_NT" then -- set default shell to powe
vim.opt.shellredir = "2>&1 | Out-File -Encoding ASCII %s; exit $LastExitCode"
vim.opt.shellpipe = "2>&1 | Out-File -Encoding ASCII %s; exit $LastExitCode"
end
-- Tab
vim.opt.tabstop = 4 -- number of visual spaces per TAB
vim.opt.softtabstop = 4 -- number of spacesin tab when editing
vim.opt.shiftwidth = 4 -- insert 4 spaces on a tab
vim.opt.expandtab = true -- tabs are spaces, mainly because of python