Miszo Radomski

Results 12 comments of Miszo Radomski

Hi @onurzorluer, I hope that I get some time this weekend to do it. I'll send you a PR with this issues addressed :)

I've added the echo statement in the `create_image` function ```lua local create_image = function(filepath, winid, bufnr) image = image_api.from_file(filepath, { window = winid, buffer = bufnr }) if not image...

I'm not sure whether it should be the actual solution, but I've wrapped it with the `vim.defer_fn` and it works every time 😅 ```lua local create_image = function(filepath, winid, bufnr)...

@exosyphon, didn't go that deep to set up this as a telescope extension. Here's the code for: * [buffer_previewer](https://github.com/miszo/dotfiles/blob/main/home/dot_config/exact_nvim/exact_lua/exact_utils/exact_telescope/buffer_previewer.lua) * [image](https://github.com/miszo/dotfiles/blob/main/home/dot_config/exact_nvim/exact_lua/exact_utils/exact_telescope/image.lua) * how I hooked it up to [telescope](https://github.com/miszo/dotfiles/blob/main/home/dot_config/exact_nvim/exact_lua/exact_plugins/telescope.lua#L73-L83)

@jcarlos7121 Feel free, maybe we can close the issue? Because it is resolved, in my opinion, and the dedicated plugin would help people as well.

Sorry @jugarpeupv, can't help you here. I've dropped usage of both this plugin and telescope in favor of the folke/snacks.nvim.

Update the `zbirenbaum/copilot.lua` plugin – they've [provided a temp fix](https://github.com/zbirenbaum/copilot.lua/commit/1ff8ab7baae8dab4a9e078350624374cff0d5e71) for this.

Hi, I have the same issue, and I've come up with the workaround based on the conform.nvim [options documentation](https://github.com/stevearc/conform.nvim/blob/f383c358091611f4a2356364e94e8cf209f1f9cf/doc/conform.txt#L20-L21) ```lua local prettier_with_lsp = { 'prettier', lsp_format = 'first' } ---@module...

Yeah, forgot to mention that I've gone and configured the eslint in the nvim-lspconfig, and set the `codeActionOnSave.enable` to true, so probably both of the adjustments are needed in the...

@andrew-t-james-core, this is why I've set the `lsp_format = 'first'` in the `conform.nvim` settings to run the format via the LSP first (ESLint in this case), and then `prettier`, you...