-
-
Notifications
You must be signed in to change notification settings - Fork 330
plugins/roslyn: init #3166
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
base: main
Are you sure you want to change the base?
plugins/roslyn: init #3166
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ lib, pkgs, ... }: | ||
lib.nixvim.plugins.mkNeovimPlugin { | ||
name = "roslyn"; | ||
packPathName = "roslyn.nvim"; | ||
package = "roslyn-nvim"; | ||
|
||
maintainers = [ lib.maintainers.GaetanLepage ]; | ||
|
||
extraConfig = { | ||
plugins.roslyn.settings.exe = lib.mkDefault "Microsoft.CodeAnalysis.LanguageServer"; | ||
}; | ||
|
||
# TODO: Figure out how to add this package, as it's the source of the `Microsoft.CodeAnalysis.LanguageServer` command, which is required for the LSP to function | ||
# home.packages = [ pkgs.roslyn-ls ]; | ||
Comment on lines
+13
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm unfamiliar with this LS, so I don't know if it is better to contribute to nvim-lspconfig (so that our If the LS can't really be configured by nvim-lspconfig, the next best thing would be to use our new To do this, you would edit |
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
empty = { | ||
plugins.roslyn.enable = true; | ||
}; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not adding yourself as the maintainer?