works
This commit is contained in:
parent
60eb07d593
commit
527a7587bb
3 changed files with 6 additions and 6 deletions
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
|
@ -1,11 +1,8 @@
|
||||||
{
|
{
|
||||||
"coq.format.indentAfterBullet": "indent",
|
|
||||||
"coq.format.unindentOnCloseProof": true,
|
|
||||||
"coq.format.indentAfterOpenProof": true,
|
|
||||||
"editor.formatOnType": true,
|
"editor.formatOnType": true,
|
||||||
"editor.unicodeHighlight.ambiguousCharacters": false,
|
"editor.unicodeHighlight.ambiguousCharacters": false,
|
||||||
"editor.tabSize": 2,
|
"editor.tabSize": 2,
|
||||||
"vscoq.path": "/nix/store/3bhqs93fw89kx339mirf4jgg52dw4fcs-ocaml4.14.2-vscoq-language-server-2.1.4/bin/vscoqtop",
|
"vscoq.path": "/Users/michael/.opam/5.1.0/bin/vscoqtop",
|
||||||
"vscoq.args": [
|
"vscoq.args": [
|
||||||
"-noinit",
|
"-noinit",
|
||||||
"-indices-matter",
|
"-indices-matter",
|
||||||
|
@ -13,7 +10,7 @@
|
||||||
"-w",
|
"-w",
|
||||||
"-notation-overridden",
|
"-notation-overridden",
|
||||||
"-Q",
|
"-Q",
|
||||||
"/Applications/Coq-Platform~8.15~2022.04.app/Contents/Resources/lib/coq/user-contrib/UniMath",
|
"/Users/michael/opt/UniMath/UniMath",
|
||||||
"UniMath"
|
"UniMath"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
3
Test.v
3
Test.v
|
@ -3,4 +3,5 @@ Require Export UniMath.Foundations.All.
|
||||||
Lemma myfirstlemma : 2 + 2 = 4.
|
Lemma myfirstlemma : 2 + 2 = 4.
|
||||||
Proof.
|
Proof.
|
||||||
apply idpath.
|
apply idpath.
|
||||||
Defined.
|
Defined.
|
||||||
|
|
||||||
|
|
|
@ -33,9 +33,11 @@
|
||||||
packages = { inherit unimath; };
|
packages = { inherit unimath; };
|
||||||
|
|
||||||
devShell = pkgs.mkShell {
|
devShell = pkgs.mkShell {
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
coq
|
coq
|
||||||
coqPackages.vscoq-language-server
|
coqPackages.vscoq-language-server
|
||||||
|
coqPackages.coq-lsp
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue