This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " If on Mac run: | |
| " brew install ripgrep | |
| " Install CtrlP of course | |
| " Plug 'ctrlpvim/ctrlp.vim' | |
| if executable('rg') | |
| set grepprg=rg\ --color=never | |
| let g:ctrlp_user_command = 'rg %s --files --color=never --glob ""' | |
| let g:ctrlp_use_caching = 0 | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: Creates a Systems Manager Association with inline PowerShell. | |
| Resources: | |
| Association: | |
| Type: AWS::SSM::Association | |
| Properties: | |
| AssociationName: AssociationName | |
| Name: AWS-RunPowerShellScript | |
| Parameters: |
OlderNewer