all repos

init.lua @ f04bfd4

my nvim config
1 files changed, 3 insertions(+), 1 deletions(-)
fix(utils): types moment
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2024-01-03 22:19:17 +0200
Parent: 9783ad8
M lua/core/utils.lua

@@ -30,7 +30,9 @@ end,

qf_toggle = function() is_qf_exists = false - for _, win in pairs(vim.fn.getwininfo()) do + for _, win in + pairs(vim.fn.getwininfo() --[[@as table]]) + do if win["quickfix"] == 1 then is_qf_exists = true end