lvimuser
lvimuser
How are you setting up null-ls/formatters/linters?
Isn't it fine since we're using `notify_once`?
Probably `lukas-reineke/indent-blankline.nvim`, does `:IndentBlankLineRefresh` work?
example with platform independent paths ```lua local join_paths = require("lvim.utils").join_paths local function get_install_path(package_name) return require("mason-registry").get_package(package_name):get_install_path() end join_paths(get_install_path "debugpy", "debugpy-adapter"), ``` or ```lua join_paths(vim.fn.stdpath("data"), "/mason/packages/debugpy/debugpy-adapter") ```
Sure, PRs welcome
For reference https://github.com/lvimuser/nvim-cmp/commit/7569056388417d887baf2e959e18a767bcfe84f1
https://github.com/hrsh7th/nvim-cmp/assets/109605931/78f122ff-8c4b-4367-8818-fd4788081d8a Not sure if useful? It looks a bit nicer, imo.
Sorry, but I don't want commands. The user may create them if necessary (and it's easier to do so than to remove); opt for exposing lua functions instead. I'll accept...
Testers needed for the `anticonceal` branch. TODO yield every 5ms on the main 'render' loop. Ref https://github.com/neovim/neovim/commit/edf05b005f34f59dd40468c36cc139e217345a71 (l104-120)
> @lvimuser I would like to test it. Do you mind sharing instructions on how to apply the patch on neovim `master` branch? > > **In neovim repo directory I...