Skip to main content
Filter by
Sorted by
Tagged with
5 votes
1 answer
68 views

Is there an option I can set in Vim and Neovim to force the gq motion to wrap text strictly at 80 characters, without addings hanging indents after lines that begin with common programming keywords ...
Brent Pappas's user avatar
Advice
1 vote
1 replies
57 views

What do I want: I set "<leader>gd" as the key to "go to definition" vim.keymap.set("n", "<leader>gd", ":Lspsaga goto_definition<Enter>&...
woc1111's user avatar
Advice
0 votes
1 replies
65 views

I'm trying to get an LSP for my gcc C++ on Neovim. The issue is, I'm quite new to both the concept of an LSP and Neovim's scripting. I'm getting mixed opinions on clangd and ccls, but I don't really ...
yeetcode's user avatar
2 votes
0 answers
57 views

I’m running Neovim 0.10.0 with mason.nvim inside WSL (Ubuntu). I have 2 Neovim configurations: one on Windows (pwsh) and the other on WSL (ubuntu). On Windows, everything works fine — I can install ...
schubert's user avatar
  • 121
1 vote
0 answers
93 views

I'm using nvim-lspconfig and inlay lines are not showing up for any rust file I'm editing. Here's the config located in .config/nvim/lua/plugins/lsp-config.lua { "neovim/nvim-lspconfig", ...
Voltarix's user avatar
1 vote
0 answers
22 views

I've been trying to setup roslyn.nvim with rzls.nvim on my neovim for a while to work with .NET, C# and Blazor. But I've been facing some frustrating problems, I'm using WSL Ubuntu 24.04, a neovim ...
Carlos Saraiva's user avatar
1 vote
0 answers
24 views

I am trying to make a user command and add completion for it vim.api.nvim_create_user_command('Piomon', function(opts) local args = opts.fargs require('platformio.piomon').piomon(args) end, { ...
Anurag Kumar Singh's user avatar