Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
feat(helix): ChatGPT/Copilot integration with helix-gpt (#53)
Browse files Browse the repository at this point in the history
* feat(home-manager): agenix home-manager support

* feat(age): copilot token

* fix: update nixpkgs for helix-gpt

* feat(helix): add ChatGPT capabilities

* fix(readme): add instructions

* feat(helix): add ruff-lsp

* fix: intel macbook age hm module

helix
  • Loading branch information
storopoli committed Feb 20, 2024
1 parent daf4003 commit 307e5fe
Show file tree
Hide file tree
Showing 11 changed files with 165 additions and 106 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,13 @@ These are my NixOS/macOS Nix setup.
- [`taplo`](https://taplo.tamasfe.dev/): TOML
- [`yaml-language-server`](https://github.com/redhat-developer/yaml-language-server): YAML
- [`pyright`](https://github.com/microsoft/pyright): Python
- [`ruff-lsp`](https://github.com/astral-sh/ruff-lsp): Python
- [`marksman`](https://github.com/artempyanykh/marksman): Markdown
- [`vscode-langservers-extracted`](https://github.com/hrsh7th/vscode-langservers-extracted): HTML, CSS, and JSON
- [`typst-lsp`](https://github.com/nvarner/typst-lsp): [Typst](https://typst.app)
- [`helix-gpt`](https://github.com/leona/helix-gpt): ChatGPT/Copilot/LLM support
(don't forget to check how to setup your environment variables,
I am using [`ryantm/agenix`](https://github.com/ryantm/agenix))

- [Catppuccin](https://catppuccin.com) Mocha theme everywhere.
- Archival tools:
Expand Down
1 change: 1 addition & 0 deletions common/age.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
luks.file = ../secrets/luks.age;
password.file = ../secrets/password.age;
root.file = ../secrets/root.age;
copilot.file = ../secrets/copilot.age;
};
identityPaths = [
../secrets/identities/age-yubikey-identity-95a7c5c3-usb_c.txt
Expand Down
2 changes: 1 addition & 1 deletion common/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
environment = {
shells = with pkgs; [ fish ]; # Default Shell
shells = with pkgs; [ fish helix ]; # Default Shell

# Environment Variables
variables = {
Expand Down
Loading

0 comments on commit 307e5fe

Please sign in to comment.