13 lines
263 B
YAML
13 lines
263 B
YAML
|
---
|
||
|
- name: Create directories for configuration
|
||
|
shell: mkdir ~/.ghc
|
||
|
|
||
|
- name: Install ghci.conf
|
||
|
template:
|
||
|
src: templates/ghci.conf.j2
|
||
|
dest: ~/.ghc/ghci.conf
|
||
|
|
||
|
- name: Install HLint.hs
|
||
|
template:
|
||
|
src: templates/HLint.hs.j2
|
||
|
dest: ~/.ghc/HLint.hs
|