kylo252
kylo252
Would you by any chance have the ability to run docker/podman?
You probably didn't see the API, but I can actually specify which plugins to update. We can do the check and only request for those that have a mis-matched SHA....
> Which API are you talking about? Packer's or one you wrote for LunarVim? Mind giving me a link? Basically the SHA generator > I was aware of the SHA...
oops, I guess github doesn't understand the word "partially" 😄
> How do you use different lazygit config for console and lunarvim? You can pass an argument `--use-config-dir`.
- do you have free inodes in `/var/lib/docker/overlay2`? since `rename()` won't work if you run out of links - are you running rootless docker? - did you try `rename()` manually?...
Here's a simple implementation for `ZkGrep` ```lua function M.grep_notes(opts) local collection = {} local list_opts = { select = { "title", "path", "absPath" } } require("zk.api").list(vim.env.ZK_NOTEBOOK_DIR, list_opts, function(_, notes) for...
> I agree, it makes sense to have the documentation next to the code, should prevent it becoming outdated. > > It would be really cool to automatically generate the...
> is there a way to automate it? Here's my script so far, just give it a valid bufnr (check `:LspInfo`) https://gist.github.com/kylo252/7b3edb23b55197316a33916fd79d942f Here are the results, which as you can...
is it anything beyond this? ```lua local opts = {} require'lvim.lsp.manager'.setup("angularls", opts) ``` cc: @haexyh, @terr-steak