A simple floating command line window for Neovim.
Learning about creating nvim plugins and Lua.
Using lazy.nvim:
{
"johanalkstal/floatcmd.nvim",
config = function()
require("floatcmd").setup({
-- options
})
end,
}Default options:
{
width = 0.5, -- 50% of screen width
height = 1, -- 1 line height
border = "rounded", -- Rounded borders
title = "Cmdline", -- Window title
title_pos = "left", -- Title position
}