Iordanis Petkakis

Results 535 comments of Iordanis Petkakis

Yes, I believe it would be helpful for the maintainer to read everything that transpires in your original post instead of having to go through all our comments to get...

In my personal opinion, this is unnecessary noise. You mentioned in your issue that your problem was that the Warning message kept appearing even after you made it work in...

Didn't you say in the issue you created that you got it working and only the warning kept appearing? So, just disable that warning. Did you read what i suggested...

https://github.com/LazyVim/LazyVim/blob/12818a6cb499456f4903c5d8e68af43753ebc869/lua/lazyvim/plugins/extras/lang/astro.lua#L34-L45 I believe instead of all the changes you made, you can just replace line 40 with ```lua location = vim.g.get_pkg and vim.g.get_pkg.astro or LazyVim.get_pkg_path("astro-language-server", "/node_modules/@astrojs/ts-plugin"), ``` and then the...

You might also want to add at the top of the file ```lua if lazyvim_docs then -- If you don't want to use Mason to install the LSP server you...

It's the same option in Vim and Neovim as well. You can see [here](https://github.com/LazyVim/LazyVim/blob/12818a6cb499456f4903c5d8e68af43753ebc869/lua/lazyvim/config/options.lua#L2-L51) other options being defined like this as well. It's being used for folds, root_spec etc. It's...

An even better solution would be to change the `LazyVim.get_pkg_path` function directly from this https://github.com/LazyVim/LazyVim/blob/12818a6cb499456f4903c5d8e68af43753ebc869/lua/lazyvim/util/init.lua#L250-L263 to the following ```lua function M.get_pkg_path(pkg, path, opts) if vim.g.pkg_path and vim.g.pkg_path[pkg] then local ret...

Ok i see. I don't do any web dev, so i'll leave that decision up to you, since you seem to have more experience.