This commit is contained in:
Michael Zhang 2024-07-29 00:02:17 -05:00
parent 60eb07d593
commit 527a7587bb
3 changed files with 6 additions and 6 deletions

View file

@ -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"
] ]
} }

1
Test.v
View file

@ -4,3 +4,4 @@ Lemma myfirstlemma : 2 + 2 = 4.
Proof. Proof.
apply idpath. apply idpath.
Defined. Defined.

View file

@ -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
]; ];
}; };
}); });