3 questions from the last 7 days
Advice
0
votes
1
replies
65
views
LSP for gcc C++ on Neovim
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 ...
1
vote
0
answers
24
views
Add description with complete in nvim_create_user_command
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, {
...