Disable code action prompt autocommand

This commit is contained in:
Michael Peters 2022-03-01 01:42:54 -06:00
parent b26641c917
commit 04606f2ee9
2 changed files with 6 additions and 5 deletions

View File

@ -6,6 +6,7 @@ function M.config()
return
end
-- Highlight under current selection
local function lsp_highlight_document(client)
if client.resolved_capabilities.document_highlight then
vim.api.nvim_exec(

View File

@ -18,14 +18,14 @@ function M.config()
-- Code actions
code_action_icon = "",
code_action_prompt = {
enable = true,
sign = false, -- this thing is ultra annoying
sign_priority = 40,
virtual_text = false,
enable = false,
--sign = false, -- this thing is ultra annoying
--sign_priority = 40,
--virtual_text = false,
},
finder_definition_icon = "",
finder_reference_icon = "",
max_preview_lines = 10,
max_preview_lines = 40,
finder_action_keys = {
open = "o",
vsplit = "s",