-
Notifications
You must be signed in to change notification settings - Fork 0
feat(programs): add language servers and php program #1051
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鈥檒l occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 | ||
|---|---|---|---|---|
|
|
@@ -2,5 +2,6 @@ | |||
| { | ||||
| home.packages = with pkgs; [ | ||||
| go | ||||
| gopls | ||||
|
||||
| gopls |
Copilot
AI
Mar 9, 2026
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.
PR description lists added language servers but doesn鈥檛 mention gopls; however this change adds it to the Go program module. Please either update the PR description to include gopls or drop this addition if it鈥檚 out of scope.
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,6 +1,7 @@ | ||||
| { pkgs, ... }: | ||||
| { | ||||
| home.packages = with pkgs; [ | ||||
| node | ||||
| nodejs | ||||
| nodePackages.typescript-language-server | ||||
|
||||
| nodePackages.typescript-language-server |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { pkgs, ... }: | ||
| { | ||
| home.packages = with pkgs; [ | ||
| php | ||
| nodePackages.intelephense | ||
| ]; | ||
| } |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -2,6 +2,7 @@ | |||
| { | ||||
| home.packages = with pkgs; [ | ||||
| python3 | ||||
| pyright | ||||
|
||||
| pyright |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,6 @@ | |
| { | ||
| home.packages = with pkgs; [ | ||
| zig | ||
| zls | ||
| ]; | ||
| } | ||
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.
For better maintainability, please sort the list of enabled programs alphabetically. While you've added
nodeandphpin the correct alphabetical position relative to their neighbors, the entire list is not sorted (e.g.,zigappears beforestarship).Keeping this list sorted will make it easier to manage as more programs are added. Here is the suggested sorted list: