From eb5345cf00d349c3f8785d24ba84e8fc8c7abd40 Mon Sep 17 00:00:00 2001 From: "Florian RICHER (MrDev023)" Date: Wed, 13 Apr 2022 23:09:10 +0200 Subject: [PATCH] [WINDOWS] Install fonts + neovim --- run_once_prepare_windows.ps1 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/run_once_prepare_windows.ps1 b/run_once_prepare_windows.ps1 index 9560635..82f443c 100644 --- a/run_once_prepare_windows.ps1 +++ b/run_once_prepare_windows.ps1 @@ -16,4 +16,13 @@ Foreach ($item in $appDatasToSymlink) { } # Install required packages with winget -winget install alacritty +winget install alacritty gitui + +# Install other packages with scoop because not available in winget +Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') + +scoop install neovim + +# Install fonts +scoop bucket add nerd-fonts +scoop install FiraCode-NF FiraCode-NF-Mono FiraMono-NF FiraCode-Script FiraCode Delugia-Nerd-Font-Complete Delugia-Mono-Nerd-Font-Complete Cascadia-Code CascadiaCode-NF CascadiaCode-NF-Mono \ No newline at end of file