fix(nvim): noice options moved to settings
All checks were successful
/ check (push) Successful in 26s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
All checks were successful
/ check (push) Successful in 26s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
This commit is contained in:
parent
ca23dd7886
commit
401e72a861
1 changed files with 18 additions and 16 deletions
|
@ -230,22 +230,24 @@ in
|
||||||
};
|
};
|
||||||
noice = {
|
noice = {
|
||||||
enable = true;
|
enable = true;
|
||||||
lsp.override = {
|
settings = {
|
||||||
"vim.lsp.util.convert_input_to_markdown_lines" = true;
|
lsp.override = {
|
||||||
"vim.lsp.util.stylize_markdown" = true;
|
"vim.lsp.util.convert_input_to_markdown_lines" = true;
|
||||||
"cmp.entry.get_documentation" = true;
|
"vim.lsp.util.stylize_markdown" = true;
|
||||||
};
|
"cmp.entry.get_documentation" = true;
|
||||||
presets = {
|
};
|
||||||
# use a classic bottom cmdline for search
|
presets = {
|
||||||
bottom_search = true;
|
# use a classic bottom cmdline for search
|
||||||
# position the cmdline and popupmenu together
|
bottom_search = true;
|
||||||
command_palette = false;
|
# position the cmdline and popupmenu together
|
||||||
# long messages will be sent to a split
|
command_palette = false;
|
||||||
long_message_to_split = true;
|
# long messages will be sent to a split
|
||||||
# enables an input dialog for inc-rename.nvim
|
long_message_to_split = true;
|
||||||
inc_rename = false;
|
# enables an input dialog for inc-rename.nvim
|
||||||
# add a border to hover docs and signature help
|
inc_rename = false;
|
||||||
lsp_doc_border = true;
|
# add a border to hover docs and signature help
|
||||||
|
lsp_doc_border = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
notify = {
|
notify = {
|
||||||
|
|
Loading…
Reference in a new issue