1 ---@type LazyPluginSpec
8 ---@type BufferlineConfig
11 always_show_bufferline = false,
20 command_palette = false, -- don't position the cmdline and popupmenu together
21 lsp_doc_border = true, -- add a border to hover docs and signature help
27 { -- send file written messages to mini
33 opts = { skip = true },
37 config = function(_, opts)
38 -- ensure [w] is written to msg_show so we can match it
39 vim.opt.shortmess:append("w")
40 vim.opt.shortmess:remove("W")
42 require("noice").setup(opts)
47 --TODO: Things that were in vim but are missing
48 -- - git line add/mod/del ar next to branch name rather on right
49 -- - one status line per splits
50 -- - maybe a single one is OK too?
51 -- - I think I want a line stating wihch file is in the split though
52 -- - unix/dos eof markers
53 -- - really I only want to know if it's not unix
54 -- - filetype in text form. It's quite important to glance this quickly
57 "indent-blankline.nvim",
63 animation = require("mini.indentscope").gen_animation.linear({ duration = 10 }),