Iordanis Petkakis

Results 535 comments of Iordanis Petkakis

`noice` does not seem to be redrawing while in search mode (or at least not redrawing properly). It was just a lucky guess while searching through the commits and found...

Please do bare in mind that my knowledge is very limited and this was purely based on me testing things out. In case you have other side effects, this autocmd...

Could someone test the linked PR? I'm not 100% confident. If it still doesn't work, I'll just delete it and wait for Folke to take a proper look when he's...

Create a file `~/.config/nvim/lua/plugins/core.lua` with contents ```lua return { { "LazyVim/LazyVim", url = "https://github.com/dpetka2001/LazyVim", branch = "fix/lsp_client_supports_method", }, } ``` After you save the file, open Lazy UI with `l`...

`codeActionOnSave` is the default setting from `nvim-lspconfig` as can be seen [here](https://github.com/neovim/nvim-lspconfig/blob/1a3a429efec62af632dfd8fa9b52fa226f655ec2/lua/lspconfig/configs/eslint.lua#L77-L80). LazyVim doesn't change that. Does it work for you on 0.10.4?

You have to set in your `~/.config/nvim/lua/config/options.lua` file the following `vim.g.lazyvim_php_lsp = "intelephense"` to use intelephense, otherwise by default it uses phpactor. It's also mentioned in the [docs](https://www.lazyvim.org/extras/lang/php#options). Please make...

You're doing something wrong. Test with a fresh LazyVim installation without your personal configuration. I tested with a fresh LazyVim installation and works as expected. Screencast following https://github.com/user-attachments/assets/fab5eb72-11ae-4cae-992c-9687f218769a PS: Did...

The `open` handler for opening urls is exposed in the settings already. You can just do ```lua map({"n", "x" }, "gY", function() Snacks.gitbrowse({ open = function(url) vim.fn.setreg("+", url) end, notify...

Maintainer made a comment elsewhere that he will be back mid May. I don't know if anything changed regarding his plans, but the best you can do is wait.