-
-
Notifications
You must be signed in to change notification settings - Fork 330
roslyn.nvim #885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi ! However, I will not (yet) add support for it explicitly (
1 is the real reason. 2 can be solve eventually. |
Hey, the officially-endorsed fork now only requires neovim >= 0.10; Would be interested in looking into this now? :) |
Ok good to know ! Would you be interested in making a PR yourself then ? |
On the 2 month anniversary of the question, here I am! I don't know where to put the various bits to make a PR (If you can give me some pointers that'd be great), but I just tried to do it locally and realized it required like no code to add. programs.nixvim = {
enable = true;
extraPlugins = [ pkgs.vimPlugins.roslyn-nvim ];
extraConfigLua = ''
require('roslyn').setup({
-- roslyn-ls adds this command
exe = 'Microsoft.CodeAnalysis.LanguageServer'
})
'';
};
home.packages = [ pkgs.roslyn-ls ]; |
Good to hear! Basically, you can have a look at recent PRs that have been made to add plugins.
Then, open the generated files and fill things in. Importantly, please do not add anything under |
You could reference some of the If that's a language server, it may be better to just have an assertion that the relevant |
Plugin: roslyn.nvim
Plugin repository: URL to the repository of the plugin
Is the plugin on nixpkgs: No
Extra information
This is the language server that is present in VSCode's C# Extension, and is supposed to replace Omnisharp.
The text was updated successfully, but these errors were encountered: