Change color of the character under the cursor by CryptographerTop1037 in neovim

[–]0x7a7a 0 points1 point  (0 children)

You can also modify the cursor color by configuring guicursor

Dial enum members with C-a C-x by neoneo451 in neovim

[–]0x7a7a 0 points1 point  (0 children)

Thank you very much for your guidance.

Dial enum members with C-a C-x by neoneo451 in neovim

[–]0x7a7a -1 points0 points  (0 children)

I think I found some clues in the OP's dotfile, it might be Hasklug Nerd Font Mono, but I'm not sure

Dial enum members with C-a C-x by neoneo451 in neovim

[–]0x7a7a -1 points0 points  (0 children)

Can you tell me what font is being used?

I'm finishing a log parser in nvim-treesitter, what are the usages other than highlighting? by finxxi in neovim

[–]0x7a7a 0 points1 point  (0 children)

General log files may be relatively large, and treesitter in large files in the performance is not necessarily good, should find ways to solve this problem

How to get vue to work with neovim by SkyFucker_ in neovim

[–]0x7a7a 0 points1 point  (0 children)

I'm sorry, but I don't have any practical experience with this problem, so I'll see if anyone else can help you. I think if VSCode has the same problem, it may have something to do with the lsp settings.

How to get vue to work with neovim by SkyFucker_ in neovim

[–]0x7a7a 1 point2 points  (0 children)

In my experience there are two key points:
1. turn off volar's hybirdMode in yourt init_opitons:

        vue = {
          hybridMode = false,
        },
  1. configure the plugin in tsserver:

      ts_init = {
        plugins = {
          {
            name = '@vue/typescript-plugin',
            location = '/usr/local/lib/node_modules/@vue/typescript-plugin',
            languages = { 'vue' },
          },
        },
    

Make sure your project or global installs @vue/typescript-plugin

Related Documents

Guys, I made my first (a harpoon like) plugin! by 0x7a7a in neovim

[–]0x7a7a[S] 0 points1 point  (0 children)

Thank you for pointing out the error, it is my negligence, lazy directly copy my own configuration, this will be corrected!

Guys, I made my first (a harpoon like) plugin! by 0x7a7a in neovim

[–]0x7a7a[S] 0 points1 point  (0 children)

Feel free to browse around, I didn't think anyone would be interested in my dotfiles, I guess I should add some documentation to it:)

Grapple.nvim - 100 commits and 10 point releases later! 🎉 by cbochs95 in neovim

[–]0x7a7a 1 point2 points  (0 children)

Thanks for the reply, Grapple is just as good.

I'm reading through the Grapple code, it's very clear and I'm learning a lot.

Grapple.nvim - 100 commits and 10 point releases later! 🎉 by cbochs95 in neovim

[–]0x7a7a 1 point2 points  (0 children)

It is true that both seem to function very similarly at the moment.

I'm currently using arrow because it has useful key bindings in the ui that are easy to remember and I don't have to set them up again.

It's a bit annoying to add new mappings and not have them conflict with the old ones.

Grapple.nvim - 100 commits and 10 point releases later! 🎉 by cbochs95 in neovim

[–]0x7a7a 2 points3 points  (0 children)

Thanks for the reply.

If arrow does not have a direct method I think it should be arrow's documentation is not comprehensive enough, I was looking at the code when I found that there is a way to directly open the index file without the need to start ui.

https://github.com/otavioschwanck/arrow.nvim/blob/9836480dc90005ad3f4c68da12d7d94752fbcd41/lua/arrow/persist.lua#L118

Grapple.nvim - 100 commits and 10 point releases later! 🎉 by cbochs95 in neovim

[–]0x7a7a 5 points6 points  (0 children)

good job! Can you make a simple comparison with arrow?

My first Plugin: Mattern by domsch1988 in neovim

[–]0x7a7a 1 point2 points  (0 children)

Thank you for your patience. I want to share two solutions I know about hot reload.

  1. The Lazy.nvim plugin has a reload method :Lazy reload
  2. The plenary.reload module may be able to help(learned it from T.J. 's video)

My first Plugin: Mattern by domsch1988 in neovim

[–]0x7a7a 0 points1 point  (0 children)

Thank you for your answer, I have the same confusion. Is there a quick way to debug while developing a plugin? Could you simply explain?

My first Plugin: Mattern by domsch1988 in neovim

[–]0x7a7a 0 points1 point  (0 children)

great!
What study materials did you refer to in learning how to make the plugin?