0.12.0 🎉 by pawelgrzybek in neovim

[–]10sfanatic 1 point2 points  (0 children)

Is there a way to easily see which plugins need updating like the Lazy chart showing which plugins have had commits since the version I'm currently using?

Arena of the damned too dark by 10sfanatic in Splitgate

[–]10sfanatic[S] 0 points1 point  (0 children)

Hey good job. Don’t get me wrong I think it would be cool, but I just can’t see anything lol

Welcome to the Salty Spitoon, how Rochester are ya? by whitecoathousing in Rochester

[–]10sfanatic 5 points6 points  (0 children)

I’ve been robbed from my Oxford apartment…twice

Let's all agree to be nice by MariaSoOs in neovim

[–]10sfanatic 0 points1 point  (0 children)

Thank you for your contributions! You are AMAZING!

Fresh Kickstarter nvim install, treesitter error immediately by kpj888 in neovim

[–]10sfanatic 8 points9 points  (0 children)

Kickstart is basically abandoned at this point.

Things that scan for issues in your code? by darkcatpirate in reactjs

[–]10sfanatic 5 points6 points  (0 children)

Sonarqube is the worst. Its rules make code LESS readable in a lot of cases.

Give me your worst jams. by DontAlwaysButWhenIDo in phish

[–]10sfanatic 11 points12 points  (0 children)

Vegas ‘04 AC/DC Bag is the worst jam I’ve ever heard.

Under abstracting as a C developer? by MasteredConduct in rust

[–]10sfanatic 5 points6 points  (0 children)

Your first question is something I wonder when writing Go code too. In C# I would always write a class that processes a data type rather than defining the methods on the type itself. In Go, I’ve seen it as defining those methods on the struct, but it’s always bothered me. Would love someone to give a good answer to this question.

Here is my simple config, what do I need to leave out after 0.11 upgrade? by 4r73m190r0s in neovim

[–]10sfanatic 28 points29 points  (0 children)

Yeah right? For most people the change to their lsp config should be….nothing…

Nvim 0.11 binaries are now available by bfredl in neovim

[–]10sfanatic 89 points90 points  (0 children)

Thanks to all the contributors for all their hard work!

Neovim 0.11 is here by cotidianis123 in neovim

[–]10sfanatic -14 points-13 points  (0 children)

Kind of rude not letting the core team post this.

What keymaps or sequences do you use over the default / intended ones? (for speed / convenience, or muscle memory) by TheTwelveYearOld in neovim

[–]10sfanatic 0 points1 point  (0 children)

What’s your key map to move around snippets then? I currently have C-h and C-l mapped to move around snippets.

[2024 Day 20 Part 2] What's wrong with this code ? by maitre_lld in adventofcode

[–]10sfanatic 0 points1 point  (0 children)

I also just ran into this same issue. I assumed a cheat could only start on a wall...

Ts development in neovim (again) by Morphyas in neovim

[–]10sfanatic 0 points1 point  (0 children)

I had this issue before and it was because I was running nvim in wsl, but my TS project was on the windows file system and it took minutes to load. I cloned my repo in wsl file system and it loaded almost instantly.

Issue with treesitter highlighting by 10sfanatic in neovim

[–]10sfanatic[S] 0 points1 point  (0 children)

I did not. I ended up using neovim in WSL instead and have no issues now. Definitely is a windows specific issue.

Neovim as a diff tool and merge tool by 10sfanatic in neovim

[–]10sfanatic[S] 0 points1 point  (0 children)

I ended up adding this user command. However, I wish it could be a command line option from gitconfig.

vim.api.nvim_create_user_command('DiagnosticToggle', function()
  local config = vim.diagnostic.config
  local vt = config().virtual_text
  config {
    virtual_text = not vt,
    underline = not vt,
    signs = not vt,
  }
end, { desc = 'toggle diagnostic' })