This commit is contained in:
Henrik Bakken
2024-05-27 01:41:51 +02:00
parent d435fa09c4
commit 39330befc7
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -594,7 +594,7 @@ require("lazy").setup({
function()
return {
exe = "ruff",
args = { "check", "--fix", "-" },
args = { "check", "--select I,F,UP", "--fix", "-" },
stdin = true,
}
end,
@@ -908,7 +908,7 @@ vim.opt.pumheight = 0
-- CURSOR
-- stay visual when indenting
map({"n", "v"}, "-", "_", { noremap = true })
map({ "n", "v" }, "-", "_", { noremap = true })
map("v", "v", "<esc>", { noremap = true })
map("v", "<Tab>", ">gv", { noremap = true })
map("v", "<S-Tab>", "<gv", { noremap = true })