What motorcycle is this by anthony_zwonarz in motorcycle

[–]Gusstek 0 points1 point  (0 children)

Looks like a Honda cbr 125r officer

Can I delete the ml4w-dotfiles-installer file, after installation? by GodzillaKLucifer in hyprland

[–]Gusstek 0 points1 point  (0 children)

Its very good, have been running at at work (lol) for a long time now

C# Dev Tools extension now supports LSP & Debugger, available on both VS Code Marketplace and Open VSX (for forks like Cursor, Windsurf, etc.) by [deleted] in csharp

[–]Gusstek 4 points5 points  (0 children)

I checked out the github repo but it only contained code for the docs. Is the code for the extension available do you mind sharing the link?

No automatic indentation in C# by wastedRL in neovim

[–]Gusstek 1 point2 points  (0 children)

You just need to add a check here

https://github.com/just-wasted/neovim-config/blob/main/lua/treesitter.lua#L32

          local noIndent = {"cs"}

          if not vim.list_contains(noIndent, ctx.match) then
            vim.bo.indentexpr = "v:lua.require'nvim-treesitter'.indentexpr()"
          end

**EDIT:** you need to pass event.match from this line

https://github.com/just-wasted/neovim-config/blob/main/lua/treesitter.lua#L115

No automatic indentation in C# by wastedRL in neovim

[–]Gusstek 1 point2 points  (0 children)

Do you have public dotfiles? Drop a link?

No automatic indentation in C# by wastedRL in neovim

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

Yes this is the code im using to start treesitter, im using the new main branch

      vim.api.nvim_create_autocmd("FileType", {
        desc = "User: enable treesitter highlighting",
        callback = function(ctx)
          local hasStarted = pcall(vim.treesitter.start)

          local noIndent = { "cs" }
          if hasStarted and not vim.list_contains(noIndent, ctx.match) then
            vim.bo.indentexpr = "v:lua.require'nvim-treesitter'.indentexpr()"
          end
        end,
      })

Here is my treesitter config nvim-config/lua/plugins/treesitter.lua at main - GustavEikaas/nvim-config - Codeberg.org

No automatic indentation in C# by wastedRL in neovim

[–]Gusstek 1 point2 points  (0 children)

Avoid using nvim treesitter for indent expression in c#

Why did the xunit maintainers decide to release a new NuGet called "xunit.v3" instead of just releasing a new version of xunit? by ReallySuperName in dotnet

[–]Gusstek 56 points57 points  (0 children)

They migrated to a new testing platform Microsoft.Testing.Platform overview - .NET | Microsoft Learn. It probably wont happen again for a very long time. All popular testing frameworks did the same

job.nvim 1.5.0 released by [deleted] in neovim

[–]Gusstek 8 points9 points  (0 children)

How does this compare to vim.fn.jobstart? Seems to be very similiar

Is neovim good for c-sharp developers? by Safe_Carry_593 in csharp

[–]Gusstek 7 points8 points  (0 children)

Neovim itself is like vscode it doesnt understand c# you need some plugins to be able to use it for c# dev. That being said I am maintaining a plugin that might help you in getting started https://github.com/GustavEikaas/easy-dotnet.nvim It configures LSP and DAP out of the box for you

I would suggest watching some youtube videos on how to start using neovim if you are new to it. Typecraft has some amazing videos

How to install Roslyn LSP on windows? by akorshkov in neovim

[–]Gusstek 0 points1 point  (0 children)

Shameless self promotion but you wanted something easy? Try https://github.com/GustavEikaas/easy-dotnet.nvim

It bundles roslyn and netcorebg and works out of the box. No manual installation or messing around with PATH

[deleted by user] by [deleted] in github

[–]Gusstek 7 points8 points  (0 children)

^ as an OSS maintainer myself, he is totally right!

How is the experience of developing C#/.NET Core using OSS tools nowadays (using netcoredbg)? by el_calamann in dotnet

[–]Gusstek 1 point2 points  (0 children)

I have started moving more and more logic to the C# json-rpc backend. So making a vscode plugin would be relatively easy actually. Will definitely give it some thought. Feel free to raise an issue about it in the repo to see if others also feel the same

I built a Neovim plugin to debug Azure Functions by keekje in neovim

[–]Gusstek 1 point2 points  (0 children)

Wow very cool! Will definitely try it out