Iordanis Petkakis
Iordanis Petkakis
Yep, no problem with me. Don't use it anyway. I would also suggest you consider removing the `util.project` Extra as a whole. In my personal opinion it will only create...
Yeah I was looking through it today and fortunately I found an issue at the plugin's repo. Was using `npm` and `yarn` before that, but both change the `git status`...
Yes, this is specific to `fzf-lua` fuzzy finder. It has the [profiles listed here](https://github.com/ibhagwan/fzf-lua?tab=readme-ov-file#profiles) and each one has its own layout and prompts. Read the docs for more info.
Maintainer is on vacation until end of August. Read the pinned issue. Also why are you not able to upgrade to Neovim 0.10? You can just use [bob](https://github.com/MordechaiHadad/bob) to easily...
@folke Just to make sure. Like I've already mentioned in my opening post, I'm not sure how this affects the metatable callables, since there `set` there accepts a boolean from...
It seems this only happens when you open Neovim with a file argument and only on the first buffer opened(and only for text files not markdown ones). If you do...
That's because this filetype is not present in the autocmd that sets `spell` and `wrap` for specific filetypes. That's a user configuration issue. You could submit a PR that adds...
Ok, I think I found what's causing this behavior. It's this [option](https://github.com/LazyVim/LazyVim/blob/12818a6cb499456f4903c5d8e68af43753ebc869/lua/lazyvim/config/options.lua#L99). If you comment out this option then it behaves correctly even on the first buffer. From reading `:h...
Yes don't close it yet. Let Folke decide on what the best approach about solving this would be. In the meantime you can disable this option in your personal configuration...
I believe we should add `vim.bo[event.buf].spelloptions = ""` [here](https://github.com/LazyVim/LazyVim/blob/12818a6cb499456f4903c5d8e68af43753ebc869/lua/lazyvim/util/plugin.lua#L89), since if there won't be a Treesitter parser available it makes sense to have `spelloptions` empty?? Again, I believe Folke will...