Iordanis Petkakis

Results 535 comments of Iordanis Petkakis

`neo-tree` has 2 highlight groups for modified files. `NeoTreeGitModified`, which by default is orange and highlights modified files when in a git repo (both filename and the symbol), and `NeotreeModified`,...

You have to configure `nvim-snippets`, see [docs](https://github.com/garymjr/nvim-snippets?tab=readme-ov-file#configuration) for `search_paths`. See also #3216 for more info. It seems that the plugin doesn't handle nested folders, so you should look out for...

@ianchesal Can you try adding the following to your personal configuration ```lua -- ~/.config/nvim/lua/plugins/snip.lua return { { "garymjr/nvim-snippets", dependencies = { "rafamadriz/friendly-snippets", }, opts = { search_paths = { vim.fn.stdpath("config")...

Strange, with the change above I have `friendly-snippets` suggestions. Do you maybe mean that you don't have custom snippets suggestions?

You need to enable `global_snippets = { "all", "global" },` in the `opts` for `global` to be included. The default value is `"all"` and it expects to find a `"all.json"`...

I created a test repo with default LazyVim settings and then added native snippets support. You can see the changes from the default LazyVim installation in this [commit](https://github.com/dpetka2001/test/commit/fbce434eb382222e02f0a23e0e6bede23348c535). Nested folders...

The languages Extras come from user contributions mostly who dabble in the specific domain. Feel free to submit a PR.

@rubiin Some quality of life suggestions (which of course you're not obligated to follow) ```lua return { { "Bekaboo/dropbar.nvim", event = "LazyFile", dependencies = { "nvim-telescope/telescope-fzf-native.nvim", }, keys = {...

I don't use it personally, so just had a look around googling for dotfiles, because when I tried it bare bones it looked to me that for most of its...

So with this PR the user has to explicitly put `opts.enableInlayHints = true` in his personal configuration to enable the inlay hints?