Compare commits

...

6 commits

Author SHA1 Message Date
ProgramSnail
0003fcc537 helix config fix 2025-10-14 20:14:43 +03:00
ProgramSnail
d711708a49 helix reple config 2025-10-14 20:11:14 +03:00
ProgramSnail
d3e5061f02 opam: ignore errors 2025-10-14 18:59:46 +03:00
ProgramSnail
1b1c3d13c1 opam install fix 2025-10-14 18:46:12 +03:00
ProgramSnail
7188913d73 ocaml: fix 2025-10-14 18:33:34 +03:00
ProgramSnail
b532b6a0df become fix 2025-10-14 18:24:20 +03:00
5 changed files with 14 additions and 2 deletions

View file

@ -11,6 +11,7 @@
environment:
OPAMSWITCH: default
changed_when: false
ignore_errors: true
- name: "Installing coq lsp: lsp install"
ansible.builtin.command:
@ -18,6 +19,7 @@
environment:
OPAMSWITCH: default
changed_when: false
ignore_errors: true
- name: Downloading vscode coq lsp extension
ansible.builtin.get_url:

View file

@ -1,4 +1,5 @@
- name: installing hlint # TODO: install by cabal (?)
become: true
ansible.builtin.dnf5:
name:
- hlint

View file

@ -14,7 +14,7 @@
when: "'haskell' in tools"
- name: OCaml dev environment
ansible.builtin.import_tasks: haskell.yml
ansible.builtin.import_tasks: ocaml.yml
when: "'ocaml' in tools"
- name: Coq dev environment

View file

@ -7,10 +7,17 @@
- gmp-devel
state: latest
- name: "Installing coq lsp: pin version"
- name: Initializing opam
ansible.builtin.command:
cmd: opam init
changed_when: false
ignore_errors: true
- name: Creating opam default switch (5.3.0)
ansible.builtin.command:
cmd: opam switch create default 5.3.0
changed_when: false
ignore_errors: true
# update fish path
- name: Get programs list to check fish presence

View file

@ -22,10 +22,12 @@ mouse = false
"ret" = ":w"
"S-left"="jump_view_left"
"S-right"="jump_view_right"
"A-ret" = ":pipe-to reple eval"
[keys.select]
"ы" = "yank"
"д" = "delete_selection"
"A-ret" = ":pipe-to reple eval"
[keys.normal.space]
l = ":toggle lsp.display-inlay-hints"