Add powershell role for Windows

This commit is contained in:
Kenneth Benzie 2022-05-01 22:37:50 +01:00
parent 6aca74ff3c
commit 92a15c6e18
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,16 @@
---
- name: clone config repos
win_git:
repo: git@code.infektor.net:config/WindowsPowerShell.git
dest: '{{ansible_env.USERPROFILE}}/Documents/WindowsPowerShell'
branch: master
- name: install chocolatey package
win_chocolatey:
name: Cmder
state: latest
- name: install PsReadline module
win_psmodule:
name: PsReadline
state: latest

View File

@ -12,6 +12,7 @@
- hosts: windows
roles:
- role: powershell
- role: neovim
- role: git
- role: python