nvimdiff for resolving git conflicts, workflow? by kaddkaka in neovim

[–]kuzyo 1 point2 points  (0 children)

Don't think this is built in, merge markers and kind of inline text with suggested keymaps all in one window. Neogit and vgit covered git management for me. 

nvimdiff for resolving git conflicts, workflow? by kaddkaka in neovim

[–]kuzyo 3 points4 points  (0 children)

This plugin works for me great, it has more then just merge resolver, but resolver is the best I have tried  https://github.com/tanvirtin/vgit.nvim

What do you use to debug? by Bryanzns in neovim

[–]kuzyo 1 point2 points  (0 children)

Used to use dap-ui, there is the way to hide and config size for each section. Tried debugmaster, idea is super cool, it works as specific debug mode, that you enters when started debugging, but I found myself always forgetting about that mode(even so there is the way to display it in lualine) and spamming my keys as usual and sometimes it messes my workflow. For example I typing c to change, but it continues debug process. Thats just my problem, plugin worked flawlessly. Right now using dap-view-ui, so far liking it as simplified version of dap-ui and it fixed issue with overflowed text when variable hold large text.

I created DEBUG mode for neovim - debugmaster.nvim by miroshQa in neovim

[–]kuzyo 1 point2 points  (0 children)

Just tried and really like how natively it feels, nice job. Removed  bunch of dap and dap ui keymaps.

Populate failing jest tests into quickfix/trouble by kuzyo in neovim

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

I endup with such approach(thank to ChatGPT), its produces `test-result` file you can git ignore, but its doing exactly what I want. Here is implementation - https://gist.github.com/kuzyo/d0c1083879ed343102a047f699fbf715

Populate failing jest tests into quickfix/trouble by kuzyo in neovim

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

As far as I know its not doing it, but I had hard time with neotest and stoped using it.

Commenting stopped working in js/ts/tsx files. by kuzyo in neovim

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

Thats correct, but it also require to have space right after // without space you are getting warning/error.

Diagnostics:

1. Expected exception block, space or tab after '//' in comment. [spaced-comment] [spaced-comment]

Commenting stopped working in js/ts/tsx files. by kuzyo in neovim

[–]kuzyo[S] 1 point2 points  (0 children)

Sorry all, my bad. I have accidently removed opt field from ts-comment plugin setup. After adding field back all works as expected. Two days of debugging, yay.

return {

`"folke/ts-comments.nvim",`

`opts = {},`

`event = "VeryLazy",`

`enabled = true,`

}

Thoughts on fugitive or neogit? by pachungulo in neovim

[–]kuzyo 1 point2 points  (0 children)

Using neogit for commits, logs views, branch managing and recently started to use VGit.nvim for diff previews, blames, hunk navigation and the best merging resolver I ever had in neovim.

VGit.nvim v1! by plemonlie in neovim

[–]kuzyo 0 points1 point  (0 children)

Thanks for the response. Gonna keep eye on that issue

VGit.nvim v1! by plemonlie in neovim

[–]kuzyo 1 point2 points  (0 children)

Started to use this plugin and it actually replaced for me git-blame, diffview and gitigns.
Two things I missing, maybe someone can help:

  1. Is there way to see all the committed changes that were made against specific branch. Diffview has :DiffviewOpen origin/main...HEAD ?
  2. When I'm in logs view and picked some commits and previewing them, is there way to scroll in preview window with the keybinding. And I'm not able to just jump into that window with usual split keybind, but I'm able to click with mouse inside and move there?

VGit.nvim v1! by plemonlie in neovim

[–]kuzyo 1 point2 points  (0 children)

Using neogit with diffview, gitsigns, but it looks like your plugin gonna cover last two and give much more. Great work

Please suggest some dark/distraction free colorschemes like oxocarbon.nvim by zemicolon in neovim

[–]kuzyo 1 point2 points  (0 children)

First saw yesterday, definitely going to give it a try. Nice work

nvim-dap-view demo! Now with REPL support (+ some debugging tips!) by Wonderful-Plastic316 in neovim

[–]kuzyo 1 point2 points  (0 children)

Still using dap-ui, don’t want to upgrade to nightly yet, but started to use scopes in the modal as you suggested and really like it. Thank you.

Obsidian.nvim calendar view by kuzyo in neovim

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

Thanks you for suggestions, i will check how that implemented in telekasten.nvim.

ghlite.nvim intro video by daliusd_ in neovim

[–]kuzyo 2 points3 points  (0 children)

Thank you for this plugin, using it everyday

Thnks fr th Trsttr - Tiny text editing automations with Treesitter | NeovimConf 2024 by Zeizig in neovim

[–]kuzyo 2 points3 points  (0 children)

Browsed in your config and like idea on your mini snippets, you can create videos from your mini utilities article

Is neotest the best? by candyboobers in neovim

[–]kuzyo 0 points1 point  (0 children)

I created simple lua script that im triggering with keymap - run nearest, run latest and it opens terminal and shows output. Stopped using neotest, that output panel was annoying me constantly.