Skip to content

Commit 3915c84

Browse files
committed
fix(formatting): fix treefmt stuff
1 parent d2bd5d4 commit 3915c84

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818
1. [Impurities](6-impurities)
1919
1. [Currently known impurities](61-currently-known-impurities)
2020
1. [Notes](62-notes)
21-
1. [References](7-references)
21+
1. [Resources](7-resources)
22+
1. [Credits & Special thanks](8-credits-special-thanks)
23+
1. [Major help](81-major-help)
24+
1. [Additional help](82-additional-help)
2225

2326
## 1. About ❄️
2427

@@ -149,10 +152,10 @@ avoid using it.
149152
### 6.2 Notes
150153

151154
- [shadow-nix](https://github.com/NicolasGuilloux/shadow-nix) and all its
152-
forks rely on impure imports of hashes, so I am maintaining my own fork
153-
[tsandrini/shadow-nix](https://github.com/tsandrini/shadow-nix)
155+
forks rely on impure imports of hashes, so I am maintaining my own fork
156+
[tsandrini/shadow-nix](https://github.com/tsandrini/shadow-nix)
154157
- I was previously using [devenv](https://devenv.sh/), however, it still doesn't
155-
work really well in a pure mode, so switched to a simple devshell instead.
158+
work really well in a pure mode, so switched to a simple devshell instead.
156159

157160
## 7. Resources 📚
158161

@@ -190,7 +193,7 @@ taken some piece of code or have been inspired from. Huge thanks ❤️
190193
### 8.1 Major help
191194

192195
These are people that are engrained in the nix community and whose work I/we
193-
use on a daily basis. I hope they will hapilly continue to be a part of the
196+
use on a daily basis. I hope they will happily continue to be a part of the
194197
nix community and I thank them for all of their contributions.
195198

196199
[edolstra](https://github.com/edolstra)
@@ -203,7 +206,9 @@ nix community and I thank them for all of their contributions.
203206
-- [fufexan](https://github.com/fufexan)
204207
-- [NobbZ](https://github.com/NobbZ)
205208

206-
### 8.2 Additional help with ideas & code snippets
209+
### 8.2 Additional help
210+
211+
Additional help with certain specific areas, inspiration or code snippets.
207212

208213
[balsoft](https://github.com/balsoft)
209214
-- [dc-tec](https://github.com/dc-tec)

flake-parts/modules/nixvim/plugins/cmp/cmp.nix

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@
2121
}:
2222
let
2323
inherit (lib) mkIf mkMerge mkEnableOption;
24-
inherit (localFlake.lib.modules) mkOverrideAtNixvimModuleLevel mkOverrideAtNixvimProfileLevel isModuleLoadedAndEnabled;
24+
inherit (localFlake.lib.modules)
25+
mkOverrideAtNixvimModuleLevel
26+
mkOverrideAtNixvimProfileLevel
27+
isModuleLoadedAndEnabled
28+
;
2529

2630
cfg = config.tensorfiles.nixvim.plugins.cmp.cmp;
2731
_ = mkOverrideAtNixvimModuleLevel;
@@ -57,9 +61,13 @@ in
5761
};
5862

5963
copilot-cmp = {
60-
enable = mkEnableOption ''
61-
Enable the copilot-cmp integration.
62-
'' // { default = true; };
64+
enable =
65+
mkEnableOption ''
66+
Enable the copilot-cmp integration.
67+
''
68+
// {
69+
default = true;
70+
};
6371
};
6472
};
6573

flake-parts/modules/nixvim/plugins/lsp/otter.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
{
1717
config,
1818
lib,
19-
pkgs,
2019
...
2120
}:
2221
let

0 commit comments

Comments
 (0)