refactor: Update stylua.toml and format

This commit is contained in:
demenik
2025-12-16 14:59:51 +01:00
parent bf901af37c
commit 309ab2e17b
3 changed files with 137 additions and 135 deletions

View File

@@ -1,4 +1,4 @@
vim.api.nvim_create_autocmd('WinEnter', {
vim.api.nvim_create_autocmd("WinEnter", {
once = true,
command = [[ set laststatus=0 ]],
})

View File

@@ -213,9 +213,9 @@ wk.add {
require("neotest").run.run()
end, "Run nearest test"),
set_key.cmd("tT", function()
require("neotest").run.run({strategy = "dap"})
require("neotest").run.run { strategy = "dap" }
end, "Debug nearest test"),
set_key.cmd("ta", function()
require("neotest").run.run(vim.fn.expand("%"))
require("neotest").run.run(vim.fn.expand "%")
end, "Run all tests in file"),
}

View File

@@ -1,2 +1,4 @@
quote_style = "AutoPreferSingle"
quote_style = "AutoPreferDouble"
call_parentheses = "None"
indent_type = "Spaces"
indent_width = 2