nvim-lua
By ibhagwan
plenary.nvim
plenary: full; complete; entire; absolute; unqualified. All the lua functions I don't want to write twice. (by nvim-lua)
nvim-lua | plenary.nvim | |
---|---|---|
14 | 59 | |
219 | 3,050 | |
0.5% | 2.4% | |
7.8 | 7.1 | |
12 days ago | 2 months ago | |
Lua | Lua | |
- | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
nvim-lua
Posts with mentions or reviews of nvim-lua.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-02-02.
-
vim-tmux-navigator is conflicting with toggleterm
I recently converted vim-tmux-navigator to lua via a simple function and using A-hjkl\ binds (which has no conflicts) instead of the default C-hjkl\, feel free to reuse my code, relevant commit.
-
vscode like rename ui
source: https://github.com/ibhagwan/nvim-lua/blob/main/lua/lsp/rename.lua
-
Hibiscus 🌺 -- Fennel eye-candy for neovim
I guess this is a preference thing, I would consider my config my config highly customized and pretty advanced, it has almost 8k lines of code, I don't fiddle with it as much as when I just converted to lua but I still update ocasionally and I find lua perfect for the job, instead of macros I just create small lua functions in order to avoid code duplication (where applicable).
-
I love this community
I'm not just giving you complements to boost your morale, I've seen your code first hand, I've used feline (we even interacted in issues) and also copied your archived nvim-reload code into my config and can recognize a good programmer when I see one.
-
How to make ":luafile $MYVIMRC<CR>" work?
Technically all you need to do is set package.loaded[module] = nil for all the modules you wish to reload and that's why my modded version does, it reloads all your entire neovim config and all the plugins listed in the linked init file.
-
FzfLua 'git status' as a high level staging tool
FYI, just added this to my config with a slight twist (resize back once I'm done), this so great :)
-
Good Neovim Configurations
My config isn’t a “permade”, it’s not meant to be a solution for anyone other than myself, nevertheless you might find it useful for plugin selection and some cool functions.
-
How to write plugins, workflow setup?
You can view my setup here.
-
A few useful features I added to Fzf-Lua preview window
My own version of Embark colorscheme and feline.nvim, my configuration can be found here
-
Feline.nvim version 0.1 released
Btw, if anyone wants the “evil-line” equivalent config for feline you can find it here
plenary.nvim
Posts with mentions or reviews of plenary.nvim.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-09-08.
- Bro Install Neovim On Windows And Setup Neovim Without Neovim Package Manager 🙀
-
How To Create An UI Menu In Neovim
we can create a function to open a pop up menu using plenary.popup like this, you need to install neovim plenary if you don't already have it https://github.com/nvim-lua/plenary.nvim
-
How can I run a vim.cmd asynchronously?
If you are really interested in doing this yourself with loop, you should take a look at either plenary.job or netman.shell (I made the latter) as both are very well documented.
- Async module in Lua for Nvim
-
How to send curl requests without plugin dependency and read the result all in Lua?
I feel this :( That said, alot of plugins rely on plenary.nvim. Its up to you if you determine this is "non-essential" or not. It will almost certainly be available for you to use already.
-
nvim-http: A simple yet modern HTTP client for neovim
The big reason I ask is that reaching out to an external python shell to run commands (disregard the fact that its python running) is going to be much slower than using the in built lua JIT interpreter. Additionally, plenary has a built in curl function so you don't have to "reinvent the wheel".
- Does there exist any simple Lua syntax to extend tables?
-
Testing my config?
There is also test harness in nvim-lua/plenary.nvim with a slightly different design, but still usable of course.
-
How to write `pretty_print`ed json data into a json file?
I am simply using busted or more specifically vusted which is a wrapper around busted for Neovim. It should be quite straightforward to learn the basics, I would say you mostly need to know these functions: describe, it (these are used to structure your test cases) and assert.are_same (to check for table equality). Some people are also using plenary which is also based on busted.
-
Neovim Lua Nix plugin template
It's based on nvim-lua-plugin-template, but uses Nix flakes to run plenary.nvim tests.
What are some alternatives?
When comparing nvim-lua and plenary.nvim you can also consider the following projects:
nvim-reload - Plugin to easily reload your Neovim config
async-await.lua - Write async function more like javascript async/await
vimux - easily interact with tmux from vim
nvim-lua-guide - A guide to using Lua in Neovim
lualine.nvim - A blazing fast and easy to configure Neovim statusline written in Lua
telescope-fzf-native.nvim - FZF sorter for telescope written in c