There was an error while loading. Please reload this page.
1 parent c86b3dd commit 3e8f44cCopy full SHA for 3e8f44c
2 files changed
config/languages/blink.nix
@@ -8,7 +8,7 @@
8
friendly-snippets.enable = true;
9
setupOpts = {
10
fuzzy = {
11
- implementation = "prefer_rust";
+ implementation = "rust";
12
prebuilt_binaries = {
13
download = false;
14
};
@@ -25,7 +25,7 @@
25
"<Enter>" = [
26
"accept"
27
"fallback"
28
- ];
+ ];
29
"<S-Tab>" = [
30
"select_prev"
31
@@ -96,6 +96,8 @@
96
"lsp"
97
"path"
98
"buffer"
99
+ "snippets"
100
+ (lib.mkIf config'.agent.enable "codecompanion")
101
];
102
providers = {
103
lsp = {
flake.nix
@@ -14,6 +14,9 @@
orig @ {lib, ...}: let
15
config' = {
16
lsp.special.useAngular = true;
17
+ agent = {
18
+ enable = true;
19
+ };
20
21
in {
22
imports = [
0 commit comments