You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
locallazypath=vim.fn.stdpath('data') ..'/lazy/lazy.nvim'ifnot (vim.uvorvim.loop).fs_stat(lazypath) thenlocallazyrepo='https://github.com/folke/lazy.nvim.git'localout=vim.fn.system({ 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath })
ifvim.v.shell_error~=0thenerror('Error cloning lazy.nvim:\n' ..out)
endend---@diagnosticdisable-next-line:undefined-fieldvim.opt.rtp:prepend(lazypath)
require('lazy').setup({
{
'folke/noice.nvim',
event='VeryLazy',
dependencies= { 'MunifTanjim/nui.nvim', 'rcarriga/nvim-notify' },
--dependencies = { 'MunifTanjim/nui.nvim' },--config = setup_noice,--enabled = vim.fn.has('nvim-0.10') == 1 and false,config=function()
require('noice').setup({
lsp= {
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**override= {
['vim.lsp.util.convert_input_to_markdown_lines'] =true,
['vim.lsp.util.stylize_markdown'] =true,
['cmp.entry.get_documentation'] =true, -- requires hrsh7th/nvim-cmp
},
},
-- you can enable a preset for easier configurationpresets= {
bottom_search=true, -- use a classic bottom cmdline for searchcommand_palette=true, -- position the cmdline and popupmenu togetherlong_message_to_split=true, -- long messages will be sent to a splitinc_rename=false, -- enables an input dialog for inc-rename.nvimlsp_doc_border=false, -- add a border to hover docs and signature help
},
})
end,
},
{
'dstein64/nvim-scrollview',
event='VeryLazy',
opts= {},
},
})
Reproduction Steps:
$ nvim
:pwd<CR>
Expect:
pwd info notify
Actually:
pwd error notify
The text was updated successfully, but these errors were encountered:
This is minimal
init.lua
Reproduction Steps:
:pwd<CR>
Expect:
pwd info notify
Actually:
pwd error notify
The text was updated successfully, but these errors were encountered: