I have vague plans to open financial support for MINI project, though. One way to get notified is to subscribe to this issue: github.com/nvim-mini/mi....
I have vague plans to open financial support for MINI project, though. One way to get notified is to subscribe to this issue: github.com/nvim-mini/mi....
But yes, I think it indeed can ๐ค
But yes, I think it indeed can ๐ค
If you want to share Neovim clipboard with system, take a look at `:h 'clipboard'` option.
If you want to share Neovim clipboard with system, take a look at `:h 'clipboard'` option.
Thank you Neovim team for the trust!
As last year, here is a thread with #neovim development stats in 2025.
Here is a small thread with #neovim development stats in 2024.
Thank you Neovim team for the trust!
It contains one new module ('mini.cmdline') and many small improvements for existing ones.
Check out the release blog post: nvim-mini.org/blog/2025-12...
It contains one new module ('mini.cmdline') and many small improvements for existing ones.
Check out the release blog post: nvim-mini.org/blog/2025-12...
Link to a releases blog post: nvim-mini.org/blog/2025-12...
Link to a releases blog post: nvim-mini.org/blog/2025-12...
The site and mini.nvim + MiniMax logos are now holiday themed. Check them out: nvim-mini.org
The site and mini.nvim + MiniMax logos are now holiday themed. Check them out: nvim-mini.org
Any template/distro adds plugins, custom mappings, and more.
Kickstart and MiniMax are meant for user to read config files. This should make it easier.
Any template/distro adds plugins, custom mappings, and more.
Kickstart and MiniMax are meant for user to read config files. This should make it easier.
There are:
- "Templates" that provide documented config example for you to build upon (MiniMax, kickstart.nvim).
- "Distributions" that provide and update various degree of abstraction layers (LazyVim, AstroVim, NvChad).
There are:
- "Templates" that provide documented config example for you to build upon (MiniMax, kickstart.nvim).
- "Distributions" that provide and update various degree of abstraction layers (LazyVim, AstroVim, NvChad).
youtu.be/CHq9bUuqo6k
youtu.be/CHq9bUuqo6k
Thank you, @kawarimidoll.github.io!
Thank you, @kawarimidoll.github.io!
If you mean sponsor 'mini.nvim', then not quite yet. You can follow this GitHub issue to know when it's possible: github.com/nvim-mini/mi...
If you mean sponsor 'mini.nvim', then not quite yet. You can follow this GitHub issue to know when it's possible: github.com/nvim-mini/mi...
vonheikemen.github.io/learn-nvim/f...
#neovim
vonheikemen.github.io/learn-nvim/f...
#neovim
- There can be several highlight groups applied to a single cell and they can "combine" their attributes. How exactly - depends on how they are applied.
- Mention the `@variable.lua` type of groups and their nesting/fallback nature.
- There can be several highlight groups applied to a single cell and they can "combine" their attributes. How exactly - depends on how they are applied.
- Mention the `@variable.lua` type of groups and their nesting/fallback nature.
The plan was to wait until when 'mini.statuscolumn' and 'mini.terminals' are implemented, but decided to just do it now.
Here is the release post: nvim-mini.org/blog/2025-10...
The plan was to wait until when 'mini.statuscolumn' and 'mini.terminals' are implemented, but decided to just do it now.
Here is the release post: nvim-mini.org/blog/2025-10...
Left more details in the gist's comment.
Just to be clear: I am not advocating for you (or anyone) to move away from Helix. I think having a more informed decision will be a win-win situation here :)
Left more details in the gist's comment.
Just to be clear: I am not advocating for you (or anyone) to move away from Helix. I think having a more informed decision will be a win-win situation here :)
I am the 'mini.nvim' (github.com/nvim-mini/mi...) author. It contains a lot of useful modules. Better grep can come from 'mini.pick' and reference window can come from 'mini.clue'.
But it is Lua/Neovim only. So based on the other response, might not be a good fit.
I am the 'mini.nvim' (github.com/nvim-mini/mi...) author. It contains a lot of useful modules. Better grep can come from 'mini.pick' and reference window can come from 'mini.clue'.
But it is Lua/Neovim only. So based on the other response, might not be a good fit.
If you want to have a single Vimscript config for both Vim/Neovim, there is a way to source code only for Neovim: guard it behind `if has('nvim')`. Using Lua code in Vimscript is possible with `lua << EOF ... EOF` (see `:h lua-heredoc` in Neovim).
If you want to have a single Vimscript config for both Vim/Neovim, there is a way to source code only for Neovim: guard it behind `if has('nvim')`. Using Lua code in Vimscript is possible with `lua << EOF ... EOF` (see `:h lua-heredoc` in Neovim).
We are continuously trying to improve Neovim's "out of the box" LSP experience. So if you used those approaches, any feedback would be appreciated. If not - completely fine, of course :)
We are continuously trying to improve Neovim's "out of the box" LSP experience. So if you used those approaches, any feedback would be appreciated. If not - completely fine, of course :)
- Did you use new Neovim's `vim.lsp.enable` + `vim.lsp.config` together with 'neovim/nvim-lspconfig' plugin? The server setup is usually one line.
- Did you try dedicated plugins for better search and quick reference window?
- Did you use new Neovim's `vim.lsp.enable` + `vim.lsp.config` together with 'neovim/nvim-lspconfig' plugin? The server setup is usually one line.
- Did you try dedicated plugins for better search and quick reference window?
The 0.12 version will add 'pumborder' option allowing built-in completion menu to have borders. Option works the same way as 'winborder' for floating windows.
PR:
- github.com/neovim/neovi...