feat: add schemastore (#26)
- Add the schemastore plugin for easy completion of JSON and YAML files (Github Actions, Kubernetes manifests etc.). - Update flake inputs.
This commit is contained in:
parent
502d31e03c
commit
e02c129f4b
4 changed files with 42 additions and 27 deletions
|
|
@ -14,6 +14,7 @@ _: {
|
|||
./plugins/cmp/cmp-copilot.nix
|
||||
./plugins/cmp/lspkind.nix
|
||||
./plugins/cmp/autopairs.nix
|
||||
./plugins/cmp/schemastore.nix
|
||||
|
||||
# Snippets
|
||||
./plugins/snippets/luasnip.nix
|
||||
|
|
|
|||
13
config/plugins/cmp/schemastore.nix
Normal file
13
config/plugins/cmp/schemastore.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
plugins.schemastore = {
|
||||
enable = true;
|
||||
|
||||
json = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
yaml = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue