mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-27 14:42:23 +00:00
35 lines
1.7 KiB
Fennel
35 lines
1.7 KiB
Fennel
(local utils (require :dots.utils))
|
|
[(utils.plugin
|
|
:folke/noice.nvim
|
|
{:dependencies [:MunifTanjim/nui.nvim]
|
|
:opts {:presets {:inc_rename true
|
|
:long_message_to_split true
|
|
:bottom_search true}
|
|
;:command_palette true}
|
|
:lsp {:override {:vim.lsp.util.convert_input_to_markdown_lines true
|
|
:vim.lsp.util.stylize_markdown true
|
|
:cmp.entry.get_documentation true}}
|
|
:views {:cmdline_popup {:border {:style "none" :padding [1 1]}
|
|
:position {:row 5 :col "50%"}
|
|
:size {:width 60 :height "auto"}}
|
|
:popupmenu {:relative "editor"
|
|
:border {:style "none" :padding [1 1]}
|
|
:position {:row 8 :col "50%"}
|
|
:size {:width 60 :height 10}}
|
|
:mini {:max_height 5}}
|
|
:cmdline {:view "cmdline" ; change to cmdline_popup
|
|
:format {:cmdline {:icon ":"}
|
|
:lua false
|
|
:help false}}
|
|
:messages {:view "mini"
|
|
:view_error "cmdline_output"
|
|
:view_warn "mini"
|
|
:view_search "virtualtext"}
|
|
:markdown {:hover {"|(%S-)|" vim.cmd.help}}
|
|
:routes [{:view "notify" :filter {:event "msg_showmode"}}
|
|
{:view "mini"
|
|
:filter {:error true :max_height 5}}
|
|
{:view "cmdline_output"
|
|
:filter {:error true :min_height 6}}]}})]
|
|
|
|
[]
|