PowerShell: Remove the PSColor module
It was rewriting too much of the output when looking for files. For
example, with the PSColor module:
> dir -Recurse -Filter "*.txt" Directory: N:\Users\Liara\.local\nvim-data\site\pack\minpac\start\neoformat Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 25/04/2020 23:13 15.18KB neoformat.txt -a--- 25/04/2020 23:13 25 requirements.txt -a--- 25/04/2020 23:13 87 visual_selection_after.txt -a--- 25/04/2020 23:13 75 visual_selection_before.txt
and without it:
> dir -Recurse -Filter "*.txt" Directory: N:\Users\Liara\.local\nvim-data\site\pack\minpac\start\neoformat\doc Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 25/04/2020 23:13 15547 neoformat.txt Directory: N:\Users\Liara\.local\nvim-data\site\pack\minpac\start\neoformat\test Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 25/04/2020 23:13 25 requirements.txt -a--- 25/04/2020 23:13 87 visual_selection_after.txt -a--- 25/04/2020 23:13 75 visual_selection_before.txt