mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-27 22:24:37 +02:00
treewide: format with new nixfmt
This commit is contained in:
parent
d63fd77511
commit
dd73afe9c6
34 changed files with 665 additions and 679 deletions
|
@ -20,22 +20,21 @@
|
|||
let
|
||||
inherit (pkgs.stdenv) hostPlatform;
|
||||
|
||||
disabledSources =
|
||||
[
|
||||
# We do not provide the required HF_API_KEY environment variable.
|
||||
"cmp_ai"
|
||||
# Triggers the warning complaining about treesitter highlighting being disabled
|
||||
"otter"
|
||||
# Invokes the `nix` command at startup which is not available in the sandbox
|
||||
"nixpkgs_maintainers"
|
||||
# Needs internet access to download `sm-agent`
|
||||
"supermaven"
|
||||
# Sometimes get auth error
|
||||
"codeium"
|
||||
]
|
||||
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||
"cmp_tabnine"
|
||||
];
|
||||
disabledSources = [
|
||||
# We do not provide the required HF_API_KEY environment variable.
|
||||
"cmp_ai"
|
||||
# Triggers the warning complaining about treesitter highlighting being disabled
|
||||
"otter"
|
||||
# Invokes the `nix` command at startup which is not available in the sandbox
|
||||
"nixpkgs_maintainers"
|
||||
# Needs internet access to download `sm-agent`
|
||||
"supermaven"
|
||||
# Sometimes get auth error
|
||||
"codeium"
|
||||
]
|
||||
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||
"cmp_tabnine"
|
||||
];
|
||||
in
|
||||
pipe config.cmpSourcePlugins [
|
||||
# All known source names
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue