neovim-ui
neovim-ui copied to clipboard
Image showcase
This is an issue to post pictures of WIP elements from nvim-ui. Please don't comment here, but open individual issues for feedback.
From plenary:
Notifications adopted from Neogit:

ui.layout

Code to do it (using a slightly-modified version of make_win() to get the windows, but you should be able to use any window you like for the most part):
layout {
{ make_win(),
{ make_win('col left'), make_win('col right'), top = 5, left = 5, right = 5, bottom = 5 },
top = 5,
left = 5,
right = 5,
},
{
make_win(),
top = 5,
left = 5,
right = 5,
bottom = 5
},
}
What does from plenary mean? Are those already available there?
The original idea of this repo was to create a series of UI widgets for building basic applications that could be bunded in core, like pickers, dialogues, pop-ups, etc. Part of that entailed upstreaming parts of plenary, so some of plenary's code is copied/modified in this repo. I'm no longer working on this (or anything neovim related for that matter), so this project is effectively dead.