initialize existing program configurations

This commit is contained in:
Baipyrus 2024-08-26 21:02:08 +02:00
parent 73439b5949
commit d639ec8609
3 changed files with 50 additions and 1 deletions

View File

@ -0,0 +1,40 @@
# Get internet settings
$settings = Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings';
function Set-Proxy {
# Get proxy data from settings
$proxy_server = $settings.proxyServer;
# Set proxy environment variables
$env:http_proxy = ($env:https_proxy = $proxy_server)
[System.Environment]::SetEnvironmentVariable('http_proxy', $proxy_server, 'User');
[System.Environment]::SetEnvironmentVariable('https_proxy', $proxy_server, 'User');
# Set proxy git settings
git config --global http.proxy $proxy_server;
git config --global https.proxy $proxy_server;
# Set proxy npm settings
npm config set proxy $proxy_server;
npm config set https-proxy $proxy_server;
}
Set-Alias -Name proxy-set -Value Set-Proxy
function Unset-Proxy {
# Unset proxy environment variables
$env:http_proxy = ($env:https_proxy = '')
[System.Environment]::SetEnvironmentVariable('http_proxy', [NullString]::Value, 'User');
[System.Environment]::SetEnvironmentVariable('https_proxy', [NullString]::Value, 'User');
# Unset proxy git settings
git config --global --unset http.proxy;
git config --global --unset https.proxy;
# Delete proxy npm settings
npm config delete proxy;
npm config delete https-proxy;
}
Set-Alias -Name proxy-unset -Value Unset-Proxy
if ($settings.proxyEnable -and (!$env:http_proxy)) { Set-Proxy }
elseif ((!$settings.proxyEnable) -and $env:http_proxy) { Unset-Proxy }

6
alacritty/alacritty.toml Normal file
View File

@ -0,0 +1,6 @@
[shell]
program = "pwsh"
args = [ "-WorkingDirectory ~" ]
[font]
normal = { family = "CaskaydiaCove Nerd Font Mono" }

View File

@ -1,2 +1,5 @@
# Neovim configuration
# Neovim Configuration
This configuration varies from this here standard. The actual Neovim configuration
can be found under a separate repository here. These files only serve as a reference
to all configurations that are to be installed in my personal configuration.