summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/trash/noice.luaa
blob: 99ad71695dd1bd5e1fb03e75dbd6e7daeb12fe50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
return {
  'folke/noice.nvim', 
  dependencies = {'MunifTanjim/nui.nvim'},
  event = "BufReadPost",
  opts = {
    lsp = {
      progress = {
        enabled = false,
      },
      override = {
        ["vim.lsp.util.convert_input_to_markdown_lines"] = true,
        ["vim.lsp.util.stylize_markdown"] = true,
        ["cmp.entry.get_documentation"] = true,
      },
    },
    presets = {
      bottom_search = true,
      command_palette = true,
      long_message_to_split = false,
      inc_rename = true,
    },
  },
}