Closed seblj closed 10 months ago
I feel like this should not be forced on the buffers created by this plugin, and should instead be set up by the user in their configs. I don't use this option, and have to use a major hack to turn it off:
vim.api.nvim_create_autocmd("BufEnter", { pattern = "*-query-*", group = vim.api.nvim_create_augroup("DadbodCursorlineHack", { clear = true }), callback = function() vim.defer_fn(function() vim.opt_local.cursorline = false end, 50) end, desc = "Disable cursorline in dbui", })
Closes #217
Thanks!
I feel like this should not be forced on the buffers created by this plugin, and should instead be set up by the user in their configs. I don't use this option, and have to use a major hack to turn it off:
Closes #217