Desktop Setup
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
reg.exe add "HKCU\Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}\InprocServer32" /f /ve
reg.exe delete "HKCU\Software\Classes\CLSID\{d93ed569-3b3e-4bff-8355-3c44f6a52bb5}" /f
Source https://www.reddit.com/r/Windows11/comments/pu5aa3/howto_disable_new_context_menu_explorer_command/
reg.exe add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v TaskbarAl /t REG_DWORD /d 0 /f
reg.exe add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v TaskbarAl /t REG_DWORD /d 1 /f
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
Set-PSReadlineOption -EditMode Emacs
Set-PSReadlineKeyHandler -Chord Ctrl+D -Function DeleteCharOrExit
​
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Sorin
#Set-Theme Paradox
Windows Registry Editor Version 5.00
​
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"LongPathsEnabled"=dword:00000001
- Have a machine environment variable
DOCKER_HOST=tcp://localhost:2375
- Propagate that value down to WSL using
WSLENV=DOCKER_HOST/u:...
, which makes Windows environment variables visible in WSL. - Check https://docs.docker.com/docker-for-windows/wsl/
Seems like Azure AD accounts on a Windows 10 box cannot simply enable Volume sharing with Docker CE for Windows. Therefore, do the following:
- In computer management, create a local user "dockerhost" with a strong password, which never expires.
- Add that dockerhost user to the "Administrators" and "docker-users" group
- Turn on drive sharing in the Docker for Windows settings, and instead of "EUROPE\foobar", use ".\dockerhost" as user.
- Grant "dockerhost" user full access on
~/.nuget
and~/vsdbg
.
%SystemRoot%\system32
%SystemRoot%
%SystemRoot%\System32\Wbem
%SystemRoot%\System32\WindowsPowerShell\v1.0
%SystemRoot%\System32\OpenSSH
%ProgramFiles%\SysinternalsSuite
%ProgramFiles(x86)%\Vim\vim82
%ProgramFiles%\Git\cmd
%ProgramFiles%\TortoiseGit\bin
%ProgramFiles%\Python38\
%ProgramFiles%\Python38\Scripts\
%ProgramFiles%\nodejs
%ProgramFiles%\erl10.6\bin
%ProgramFiles(x86)%\Elixir\bin
%ProgramFiles%\Go\bin
%ProgramFiles%\dotnet
%ProgramFiles%\PowerShell\6
%ProgramFiles(x86)%\Microsoft SDKs\Azure\CLI2\wbin
%ProgramFiles%\Microsoft SQL Server\130\Tools\Binn
%ProgramFiles%\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn
%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp
%ProgramFiles(x86)%\Graphviz2.38\bin
%ProgramFiles%\dotnet
%ProgramFiles%\Docker\Docker\resources\bin
%ProgramData%\DockerDesktop\version-bin
​
%UserProfile%\AppData\Local\Microsoft\WindowsApps
%UserProfile%\AppData\Local\Programs\Microsoft VS Code
%UserProfile%\.cargo\bin
%UserProfile%\.mix\escripts
%UserProfile%\.dotnet\tools
%UserProfile%\bin
%UserProfile%\bin\SysinternalsSuite
sc delete DiagTrack
sc delete dmwappushservice
sc config dmwappushservice start= disabled
echo "" > %ProgramData%\Microsoft\Diagnosis\ETLLogs\AutoLogger\AutoLogger-DiagTrack-Listener.etl
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection /v AllowTelemtery /t REG_DWORD /d 0 /f
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Search /v CortanaConsent /t REG_DWORD /d 0 /f
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Search /v BingSearchEnabled /t REG_DWORD /d 0 /f
export VISUAL=vim
export EDITOR="${VISUAL}"
export GIT_EDITOR="${VISUAL}"
​
git config --global core.editor "vim"
function! StatusLine(current)
return (a:current ? crystalline#mode() . '%#Crystalline#' : '%#CystallineInactive#') . ' %f%h%w%m%r '
endfunction
​
" https://jovicailic.org/2017/04/vim-persistent-undo/
set undofile
set undodir=~/.vim/undodir
​
let g:crystalline_statusline_fn='StatusLine'
let g:crystalline_theme='default'
set laststatus=2
​
set nocompatible
set path+=**
set wildmenu
filetype off
set rtp+=$HOME/.vim/bundle/Vundle.vim/
call vundle#begin('$HOME/.vim/bundle/')
Plugin 'VundleVim/Vundle.vim'
Plugin 'slashmili/alchemist.vim'
Plugin 'elixir-editors/vim-elixir'
Plugin 'jalvesaq/vimcmdline'
Plugin 'fatih/vim-go'
Plugin 'morhetz/gruvbox'
Plugin 'arcticicestudio/nord-vim'
Plugin 'flrnprz/plastic.vim'
Plugin 'rbong/vim-crystalline'
Plugin 'segeljakt/vim-silicon'
Plugin 'preservim/nerdtree'
" Plugin 'alok/notational-fzf-vim'
Plugin 'vim/killersheep'
call vundle#end()
filetype plugin indent on
​
set langmenu=en_US.UTF-8
language messages en_US.UTF-8
​
if has("gui_win32")
" set guifont=Fira_Code:h20
set guifont=Cascadia_Code:h20
" set guifont=CascadiaCode_Nerd_Font:h20
" set guifont=Pragmata_Pro_Mono:h20
" set renderoptions=type:directx
set encoding=utf-8
endif
​
" highlight Normal guifg=#d7d7d7 guibg=#1e1e1e
" colorscheme darkblue
" colorscheme gruvbox
colorscheme nord
set encoding=utf-8
​
set listchars=eol:�,tab:>-,trail:�,extends:>,precedes:<,nbsp:�
highlight SpecialKey term=standout ctermbg=yellow guibg=yellow
set list
noremap <F5> :set list!<CR>
inoremap <F5> <C-o>:set list!<CR>
cnoremap <F5> <C-c>:set list!<CR>
​
" http://vim.wikia.com/wiki/Automatic_word_wrapping
set wrap linebreak nolist
​
" source $VIMRUNTIME/mswin.vim
" behave mswin
​
if has("win32")
execute pathogen#infect()
" syntax on
syntax enable
filetype plugin indent on
endif
​
syntax enable
set number
set background=dark
set mouse=a
if &term =~ '256color'
set t_ut=
endif
​
let mapleader="\<Space>"
​
"inoremap ( ()<Left>
"inoremap { {}<Left>
"inoremap [ []<Left>
"inoremap " ""<Left>
​
" copy selected text to clipboard
set guioptions+=a
" nnoremap y "+Y
" nnoremap p "+gP
​
" nmap <C-Tab> gt
nmap <C-Tab> :tabnext<return>
nmap <C-S-TAB> :tabprev<Return>
inoremap <C-TAB> <esc>:tabnext<Return>a
inoremap <C-S-TAB> <esc>:tabprev<Return>a
​
" let g:nv_search_paths = ['C:\Users\chgeuer\Documents\SAP']
​
" highlight ColorColumn ctermbg=red ctermfg=blue
" exec 'set colorcolumn=' . join(range(2, 80, 3), ',')
#
# `cdr` brings you to the root of your git repo (kudos to https://twitter.com/thorstenball/status/1223218245592911878)
#
alias cdr='cd $(git rev-parse --show-toplevel)'
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
"copyOnSelect": true,
"copyFormatting": false,
"alwaysShowTabs": true,
"initialCols": 120,
"initialRows": 30,
"requestedTheme": "dark",
"showTabsInTitlebar": true,
"showTerminalTitleInTitlebar": true,
"wordDelimiters": " ./\\()\"\u0027-:,.;\u003c\[email protected]#$%^\u0026*|+=[]{}~?�",
"profiles":
{
"defaults":
{
"fontFace": "Delugia Nerd Font",
"colorScheme": "Nord"
},
"list":
[
{
// Make changes here to the powershell.exe profile.
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false
},
{
// Make changes here to the cmd.exe profile.
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "Command Prompt",
"commandline": "cmd.exe",
"hidden": false
},
{
"guid": "{7d04ce37-c00f-43ac-ba47-992cb1393215}",
"name": "yori",
"commandline": "C:\\Users\\chgeuer\\AppData\\Local\\Yori\\yori.exe",
"startingDirectory": "C:\\Users\\chgeuer",
"hidden": false
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
"hidden": false,
"name": "Ubuntu-20.04",
// "startingDirectory": "//wsl$/Ubuntu-20.04/home/chgeuer",
"source": "Windows.Terminal.Wsl"
}
]
},
"schemes": [
{ "name": "Nord", "foreground":"#d8dee9","background":"#2e3440","black":"#3b4252","blue":"#81a1c1","brightBlack":"#4c566a","brightBlue":"#81a1c1","brightCyan":"#8fbcbb","brightGreen":"#a3be8c","brightPurple":"#b48ead","brightRed":"#bf616a","brightWhite":"#eceff4","brightYellow":"#ebcb8b","cyan":"#88c0d0","green":"#a3be8c","purple":"#b48ead","red":"#bf616a","white":"#e5e9f0","yellow":"#ebcb8b" },
{ "name": "Solarized Dark", "foreground":"#FDF6E3","background":"#073642","black":"#073642","blue":"#268BD2","brightBlack":"#002B36","brightBlue":"#839496","brightCyan":"#93A1A1","brightGreen":"#586E75","brightPurple":"#6C71C4","brightRed":"#CB4B16","brightWhite":"#FDF6E3","brightYellow":"#657B83","cyan":"#2AA198","green":"#859900","purple":"#D33682","red":"#D30102","white":"#EEE8D5","yellow":"#B58900" },
{ "name": "Solarized Light", "foreground":"#073642","background":"#FDF6E3","black":"#073642","blue":"#268BD2","brightBlack":"#002B36","brightBlue":"#839496","brightCyan":"#93A1A1","brightGreen":"#586E75","brightPurple":"#6C71C4","brightRed":"#CB4B16","brightWhite":"#FDF6E3","brightYellow":"#657B83","cyan":"#2AA198","green":"#859900","purple":"#D33682","red":"#D30102","white":"#EEE8D5","yellow":"#B58900" },
{ "name": "Ubuntu", "foreground":"#EEEEEC","background":"#2C001E","black":"#EEEEEC","blue":"#268BD2","brightBlack":"#002B36","brightBlue":"#839496","brightCyan":"#93A1A1","brightGreen":"#586E75","brightPurple":"#6C71C4","brightRed":"#CB4B16","brightWhite":"#FDF6E3","brightYellow":"#657B83","cyan":"#2AA198","green":"#729FCF","purple":"#D33682","red":"#16C60C","white":"#EEE8D5","yellow":"#B58900" },
{ "name": "Ubuntuz", "foreground":"#EEEEEC","background":"#300A24","black":"#2E3436","blue":"#3465A4","brightBlack":"#555753","brightBlue":"#729FCF","brightCyan":"#34E2E2","brightGreen":"#8AE234","brightPurple":"#AD7FA8","brightRed":"#EF2929","brightWhite":"#EEEEEC","brightYellow":"#FCE94F","cyan":"#06989A","green":"#4E9A06","purple":"#75507B","red":"#CC0000","white":"#D3D7CF","yellow":"#C4A000" },
{ "name": "Pandora", "foreground":"#E1E1E1","background":"#141E43","black":"#000000","blue":"#338F86","brightBlack":"#3F5648","brightBlue":"#23D7D7","brightCyan":"#00EDE1","brightGreen":"#74CD68","brightPurple":"#FF37FF","brightRed":"#FF3242","brightWhite":"#FFFFFF","brightYellow":"#FFB929","cyan":"#23D7D7","green":"#74AF68","purple":"#9414E6","red":"#FF4242","white":"#E2E2E2","yellow":"#FFAD29" },
{ "name": "Treehouse", "foreground":"#786B53","background":"#191919","black":"#321300","blue":"#58859A","brightBlack":"#433626","brightBlue":"#85CFED","brightCyan":"#F07D14","brightGreen":"#55F238","brightPurple":"#E14C5A","brightRed":"#ED5D20","brightWhite":"#FFC800","brightYellow":"#F2B732","cyan":"#B25A1E","green":"#44A900","purple":"#97363D","red":"#B2270E","white":"#786B53","yellow":"#AA820C" },
{ "name": "Treehousez", "foreground":"#786B53","background":"#191919","black":"#321300","blue":"#58859A","brightBlack":"#433626","brightBlue":"#85CFED","brightCyan":"#F07D14","brightGreen":"#55F238","brightPurple":"#E14C5A","brightRed":"#ED5D20","brightWhite":"#FFC800","brightYellow":"#F2B732","cyan":"#B25A1E","green":"#44A900","purple":"#97363D","red":"#B2270E","white":"#786B53","yellow":"#AA820C" },
{ "name": "Symfonicz", "foreground":"#FFFFFF","background":"#000000","black":"#000000","blue":"#0084D4","brightBlack":"#1B1D21","brightBlue":"#0084D4","brightCyan":"#CCCCFF","brightGreen":"#56DB3A","brightPurple":"#B729D9","brightRed":"#DC322F","brightWhite":"#FFFFFF","brightYellow":"#FF8400","cyan":"#CCCCFF","green":"#56DB3A","purple":"#B729D9","red":"#DC322F","white":"#FFFFFF","yellow":"#FF8400" },
{ "name": "Campbell", "foreground":"#F2F2F2","background":"#0C0C0C","black":"#0C0C0C","blue":"#0037DA","brightBlack":"#767676","brightBlue":"#3B78FF","brightCyan":"#61D6D6","brightGreen":"#16C60C","brightPurple":"#B4009E","brightRed":"#E74856","brightWhite":"#F2F2F2","brightYellow":"#F9F1A5","cyan":"#3A96DD","green":"#13A10E","purple":"#881798","red":"#C50F1F","white":"#CCCCCC","yellow":"#C19C00" },
{ "name": "Chalkboardz", "foreground":"#D9E6F2","background":"#29262F","black":"#000000","blue":"#7372C3","brightBlack":"#323232","brightBlue":"#AAAADB","brightCyan":"#AADADB","brightGreen":"#AADBAA","brightPurple":"#DBAADA","brightRed":"#DBAAAA","brightWhite":"#FFFFFF","brightYellow":"#DADBAA","cyan":"#72C2C3","green":"#72C373","purple":"#C372C2","red":"#C37372","white":"#D9D9D9","yellow":"#C2C372" },
{ "name": "Chesterz", "foreground":"#FFFFFF","background":"#2C3643","black":"#080200","blue":"#288AD6","brightBlack":"#6F6B68","brightBlue":"#278AD6","brightCyan":"#27DEDE","brightGreen":"#16C98D","brightPurple":"#D34590","brightRed":"#FA5E5B","brightWhite":"#FFFFFF","brightYellow":"#FEEF6D","cyan":"#28DDDE","green":"#16C98D","purple":"#D34590","red":"#FA5E5B","white":"#E7E7E7","yellow":"#FFC83F" },
{ "name": "Lovelace", "foreground":"#FDFDFD","background":"#1D1F28","black":"#282A36","blue":"#8897F4","brightBlack":"#414458","brightBlue":"#556FFF","brightCyan":"#3FDCEE","brightGreen":"#18E3C8","brightPurple":"#B043D1","brightRed":"#FF4971","brightWhite":"#BEBEC1","brightYellow":"#FF8037","cyan":"#79E6F3","green":"#5ADECD","purple":"#C574DD","red":"#F37F97","white":"#FDFDFD","yellow":"#F2A272" }
],
"keybindings":
[
{ "command": "paste", "keys": "ctrl+v" },
{ "command": "find", "keys": "ctrl+shift+f" },
{ "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" },
{ "command": {"action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" },
{ "command": {"action": "splitPane", "split": "vertical", "profile": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", "tabTitle": "github","startingDirectory": "C:\\github\\chgeuer" }, "keys": ["ctrl+m"] },
{ "command": "nextTab", "keys": [ "ctrl+pgdn" ] },
{ "command": "prevTab", "keys": [ "ctrl+pgup" ] },
{ "command": "newTab", "keys": [ "ctrl+t" ] },
{ "command": "closeTab", "keys": [ "ctrl+w" ] },
{ "command": "scrollDown", "keys": [ "ctrl+shift+down" ] },
{ "command": "scrollDownPage", "keys": [ "ctrl+shift+pgdn" ] },
{ "command": "scrollUp", "keys": [ "ctrl+shift+up" ] },
{ "command": "scrollUpPage", "keys": [ "ctrl+shift+pgup" ] }
]
}```
​
### Windows Terminal Color Scheme Consolidation
​
- https://github.com/mbadolato/iTerm2-Color-Schemes/tree/master/windowsterminal
- https://terminalsplash.com/
​
```json
{
"schemes": [
{"name": "Nord", "foreground":"#d8dee9","background":"#2e3440","black":"#3b4252","blue":"#81a1c1","brightBlack":"#4c566a","brightBlue":"#81a1c1","brightCyan":"#8fbcbb","brightGreen":"#a3be8c","brightPurple":"#b48ead","brightRed":"#bf616a","brightWhite":"#eceff4","brightYellow":"#ebcb8b","cyan":"#88c0d0","green":"#a3be8c","purple":"#b48ead","red":"#bf616a","white":"#e5e9f0","yellow":"#ebcb8b" },
{"name": "Solarized Dark", "foreground":"#FDF6E3","background":"#073642","black":"#073642","blue":"#268BD2","brightBlack":"#002B36","brightBlue":"#839496","brightCyan":"#93A1A1","brightGreen":"#586E75","brightPurple":"#6C71C4","brightRed":"#CB4B16","brightWhite":"#FDF6E3","brightYellow":"#657B83","cyan":"#2AA198","green":"#859900","purple":"#D33682","red":"#D30102","white":"#EEE8D5","yellow":"#B58900" },
{"name": "Solarized Light", "foreground":"#073642","background":"#FDF6E3","black":"#073642","blue":"#268BD2","brightBlack":"#002B36","brightBlue":"#839496","brightCyan":"#93A1A1","brightGreen":"#586E75","brightPurple":"#6C71C4","brightRed":"#CB4B16","brightWhite":"#FDF6E3","brightYellow":"#657B83","cyan":"#2AA198","green":"#859900","purple":"#D33682","red":"#D30102","white":"#EEE8D5","yellow":"#B58900" },
{"name": "Ubuntu", "foreground":"#EEEEEC","background":"#2C001E","black":"#EEEEEC","blue":"#268BD2","brightBlack":"#002B36","brightBlue":"#839496","brightCyan":"#93A1A1","brightGreen":"#586E75","brightPurple":"#6C71C4","brightRed":"#CB4B16","brightWhite":"#FDF6E3","brightYellow":"#657B83","cyan":"#2AA198","green":"#729FCF","purple":"#D33682","red":"#16C60C","white":"#EEE8D5","yellow":"#B58900" },
{"name": "Ubuntuz", "foreground":"#EEEEEC","background":"#300A24","black":"#2E3436","blue":"#3465A4","brightBlack":"#555753","brightBlue":"#729FCF","brightCyan":"#34E2E2","brightGreen":"#8AE234","brightPurple":"#AD7FA8","brightRed":"#EF2929","brightWhite":"#EEEEEC","brightYellow":"#FCE94F","cyan":"#06989A","green":"#4E9A06","purple":"#75507B","red":"#CC0000","white":"#D3D7CF","yellow":"#C4A000" },
{"name": "Pandora", "foreground":"#E1E1E1","background":"#141E43","black":"#000000","blue":"#338F86","brightBlack":"#3F5648","brightBlue":"#23D7D7","brightCyan":"#00EDE1","brightGreen":"#74CD68","brightPurple":"#FF37FF","brightRed":"#FF3242","brightWhite":"#FFFFFF","brightYellow":"#FFB929","cyan":"#23D7D7","green":"#74AF68","purple":"#9414E6","red":"#FF4242","white":"#E2E2E2","yellow":"#FFAD29" },
{"name": "Treehouse", "foreground":"#786B53","background":"#191919","black":"#321300","blue":"#58859A","brightBlack":"#433626","brightBlue":"#85CFED","brightCyan":"#F07D14","brightGreen":"#55F238","brightPurple":"#E14C5A","brightRed":"#ED5D20","brightWhite":"#FFC800","brightYellow":"#F2B732","cyan":"#B25A1E","green":"#44A900","purple":"#97363D","red":"#B2270E","white":"#786B53","yellow":"#AA820C" },
{"name": "Treehousez", "foreground":"#786B53","background":"#191919","black":"#321300","blue":"#58859A","brightBlack":"#433626","brightBlue":"#85CFED","brightCyan":"#F07D14","brightGreen":"#55F238","brightPurple":"#E14C5A","brightRed":"#ED5D20","brightWhite":"#FFC800","brightYellow":"#F2B732","cyan":"#B25A1E","green":"#44A900","purple":"#97363D","red":"#B2270E","white":"#786B53","yellow":"#AA820C" },
{"name": "Symfonicz", "foreground":"#FFFFFF","background":"#000000","black":"#000000","blue":"#0084D4","brightBlack":"#1B1D21","brightBlue":"#0084D4","brightCyan":"#CCCCFF","brightGreen":"#56DB3A","brightPurple":"#B729D9","brightRed":"#DC322F","brightWhite":"#FFFFFF","brightYellow":"#FF8400","cyan":"#CCCCFF","green":"#56DB3A","purple":"#B729D9","red":"#DC322F","white":"#FFFFFF","yellow":"#FF8400" },
{"name": "Campbell", "foreground":"#F2F2F2","background":"#0C0C0C","black":"#0C0C0C","blue":"#0037DA","brightBlack":"#767676","brightBlue":"#3B78FF","brightCyan":"#61D6D6","brightGreen":"#16C60C","brightPurple":"#B4009E","brightRed":"#E74856","brightWhite":"#F2F2F2","brightYellow":"#F9F1A5","cyan":"#3A96DD","green":"#13A10E","purple":"#881798","red":"#C50F1F","white":"#CCCCCC","yellow":"#C19C00" },
{"name": "Chalkboardz", "foreground":"#D9E6F2","background":"#29262F","black":"#000000","blue":"#7372C3","brightBlack":"#323232","brightBlue":"#AAAADB","brightCyan":"#AADADB","brightGreen":"#AADBAA","brightPurple":"#DBAADA","brightRed":"#DBAAAA","brightWhite":"#FFFFFF","brightYellow":"#DADBAA","cyan":"#72C2C3","green":"#72C373","purple":"#C372C2","red":"#C37372","white":"#D9D9D9","yellow":"#C2C372" },
{"name": "Chesterz", "foreground":"#FFFFFF","background":"#2C3643","black":"#080200","blue":"#288AD6","brightBlack":"#6F6B68","brightBlue":"#278AD6","brightCyan":"#27DEDE","brightGreen":"#16C98D","brightPurple":"#D34590","brightRed":"#FA5E5B","brightWhite":"#FFFFFF","brightYellow":"#FEEF6D","cyan":"#28DDDE","green":"#16C98D","purple":"#D34590","red":"#FA5E5B","white":"#E7E7E7","yellow":"#FFC83F" },
{"name": "Lovelace", "foreground":"#FDFDFD","background":"#1D1F28","black":"#282A36","blue":"#8897F4","brightBlack":"#414458","brightBlue":"#556FFF","brightCyan":"#3FDCEE","brightGreen":"#18E3C8","brightPurple":"#B043D1","brightRed":"#FF4971","brightWhite":"#BEBEC1","brightYellow":"#FF8037","cyan":"#79E6F3","green":"#5ADECD","purple":"#C574DD","red":"#F37F97","white":"#FDFDFD","yellow":"#F2A272" },
{"name":"Dracula", "foreground":"#F8F8F2","background":"#282A36","brightBlack":"#6272A4","brightWhite":"#FFFFFF","brightBlue":"#D6ACFF","brightCyan":"#A4FFFF","brightGreen":"#69FF94","brightPurple":"#FF92DF","brightRed":"#FF6E6E","brightYellow":"#FFFFA5","black":"#21222C","white":"#F8F8F2","blue":"#BD93F9","cyan":"#8BE9FD","green":"#50FA7B","purple":"#FF79C6","red":"#FF5555","yellow":"#F1FA8C"},
{"name":"Night Owl", "foreground":"#D6DEEB","background":"#011627","brightBlack":"#575656","brightWhite":"#FFFFFF","brightBlue":"#82AAFF","brightCyan":"#7FDBCA","brightGreen":"#22DA6E","brightPurple":"#C792EA","brightRed":"#EF5350","brightYellow":"#FFEB95","black":"#011627","white":"#FFFFFF","blue":"#82AAFF","cyan":"#21C7A8","green":"#22DA6E","purple":"#C792EA","red":"#EF5350","yellow":"#ADDB67"},
{"name":"Light Owl", "foreground":"#403F53","background":"#FBFBFB","brightBlack":"#403F53","brightWhite":"#979797","brightBlue":"#288ED7","brightCyan":"#2AA298","brightGreen":"#08916A","brightPurple":"#D6438A","brightRed":"#DE3D3B","brightYellow":"#DAAA01","black":"#403F53","white":"#F0F0F0","blue":"#288ED7","cyan":"#2AA298","green":"#08916A","purple":"#D6438A","red":"#DE3D3B","yellow":"#E0AF02"},
{"name":"Polygone", "foreground":"#ffffff","background":"#101116","brightBlack":"#2b2b2b","brightWhite":"#FFFFFF","brightBlue":"#0095ff","brightCyan":"#397199","brightGreen":"#00ff6a","brightPurple":"#9940ff","brightRed":"#ff4040","brightYellow":"#ffe873","black":"#006aff","white":"#ffffff","blue":"#6272a4","cyan":"#0d4259","green":"#2fff24","purple":"#6a00ff","red":"#ff2424","yellow":"#ffc400"},
{"name":"Cobalt2", "foreground":"#c7c7c7","background":"#193549","brightBlack":"#808080","brightWhite":"#ffffff","brightBlue":"#1478DB","brightCyan":"#00ffff","brightGreen":"#33ff00","brightPurple":"#cc00ff","brightRed":"#ff0000","brightYellow":"#ffff00","black":"#000000","white":"#c7c7c7","blue":"#1478DB","cyan":"#00c5c7","green":"#3AD900","purple":"#ff2c70","red":"#ff2600","yellow":"#ffc600"},
{"name":"SMYCK", "foreground":"#F8F8F8","background":"#1B1B1B","brightBlack":"#5D5D5D","brightWhite":"#F7F7F7","brightBlue":"#9CD9F0","brightCyan":"#77DFD8","brightGreen":"#CDEE69","brightPurple":"#FBB1F9","brightRed":"#E09690","brightYellow":"#FFE377","black":"#000000","white":"#B0B0B0","blue":"#4E90A7","cyan":"#218693","green":"#8EB33B","purple":"#C8A0D1","red":"#C75646","yellow":"#D0B03C"},
{"name":"3024 Day", "foreground":"#4a4543","background":"#f7f7f7","brightBlack":"#5c5855","brightWhite":"#f7f7f7","brightBlue":"#807d7c","brightCyan":"#cdab53","brightGreen":"#3a3432","brightPurple":"#d6d5d4","brightRed":"#e8bbd0","brightYellow":"#4a4543","black":"#090300","white":"#a5a2a2","blue":"#01a0e4","cyan":"#b5e4f4","green":"#01a252","purple":"#a16a94","red":"#db2d20","yellow":"#fded02"},
{"name":"3024 Night", "foreground":"#a5a2a2","background":"#090300","brightBlack":"#5c5855","brightWhite":"#f7f7f7","brightBlue":"#807d7c","brightCyan":"#cdab53","brightGreen":"#3a3432","brightPurple":"#d6d5d4","brightRed":"#e8bbd0","brightYellow":"#4a4543","black":"#090300","white":"#a5a2a2","blue":"#01a0e4","cyan":"#b5e4f4","green":"#01a252","purple":"#a16a94","red":"#db2d20","yellow":"#fded02"},
{"name":"AdventureTime", "foreground":"#f8dcc0","background":"#1f1d45","brightBlack":"#4e7cbf","brightWhite":"#f6f5fb","brightBlue":"#1997c6","brightCyan":"#c8faf4","brightGreen":"#9eff6e","brightPurple":"#9b5953","brightRed":"#fc5f5a","brightYellow":"#efc11a","black":"#050404","white":"#f8dcc0","blue":"#0f4ac6","cyan":"#70a598","green":"#4ab118","purple":"#665993","red":"#bd0013","yellow":"#e7741e"},
{"name":"Afterglow", "foreground":"#d0d0d0","background":"#212121","brightBlack":"#505050","brightWhite":"#f5f5f5","brightBlue":"#6c99bb","brightCyan":"#7dd6cf","brightGreen":"#7e8e50","brightPurple":"#9f4e85","brightRed":"#ac4142","brightYellow":"#e5b567","black":"#151515","white":"#d0d0d0","blue":"#6c99bb","cyan":"#7dd6cf","green":"#7e8e50","purple":"#9f4e85","red":"#ac4142","yellow":"#e5b567"},
{"name":"AlienBlood", "foreground":"#637d75","background":"#0f1610","brightBlack":"#3c4812","brightWhite":"#73fa91","brightBlue":"#00aae0","brightCyan":"#00e0c4","brightGreen":"#18e000","brightPurple":"#0058e0","brightRed":"#e08009","brightYellow":"#bde000","black":"#112616","white":"#647d75","blue":"#2f6a7f","cyan":"#327f77","green":"#2f7e25","purple":"#47587f","red":"#7f2b27","yellow":"#717f24"},
{"name":"Andromeda", "foreground":"#e5e5e5","background":"#262a33","brightBlack":"#666666","brightWhite":"#e5e5e5","brightBlue":"#2472c8","brightCyan":"#0fa8cd","brightGreen":"#05bc79","brightPurple":"#bc3fbc","brightRed":"#cd3131","brightYellow":"#e5e512","black":"#000000","white":"#e5e5e5","blue":"#2472c8","cyan":"#0fa8cd","green":"#05bc79","purple":"#bc3fbc","red":"#cd3131","yellow":"#e5e512"},
{"name":"Argonaut", "foreground":"#fffaf4","background":"#0e1019","brightBlack":"#444444","brightWhite":"#ffffff","brightBlue":"#0092ff","brightCyan":"#67fff0","brightGreen":"#abe15b","brightPurple":"#9a5feb","brightRed":"#ff2740","brightYellow":"#ffd242","black":"#232323","white":"#ffffff","blue":"#008df8","cyan":"#00d8eb","green":"#8ce10b","purple":"#6d43a6","red":"#ff000f","yellow":"#ffb900"},
{"name":"Arthur", "foreground":"#ddeedd","background":"#1c1c1c","brightBlack":"#554444","brightWhite":"#ddccbb","brightBlue":"#87ceeb","brightCyan":"#b0c4de","brightGreen":"#88aa22","brightPurple":"#996600","brightRed":"#cc5533","brightYellow":"#ffa75d","black":"#3d352a","white":"#bbaa99","blue":"#6495ed","cyan":"#b0c4de","green":"#86af80","purple":"#deb887","red":"#cd5c5c","yellow":"#e8ae5b"},
{"name":"AtelierSulphurpool", "foreground":"#979db4","background":"#202746","brightBlack":"#6b7394","brightWhite":"#f5f7ff","brightBlue":"#898ea4","brightCyan":"#9c637a","brightGreen":"#293256","brightPurple":"#dfe2f1","brightRed":"#c76b29","brightYellow":"#5e6687","black":"#202746","white":"#979db4","blue":"#3d8fd1","cyan":"#22a2c9","green":"#ac9739","purple":"#6679cc","red":"#c94922","yellow":"#c08b30"},
{"name":"Atom", "foreground":"#c5c8c6","background":"#161719","brightBlack":"#000000","brightWhite":"#e0e0e0","brightBlue":"#96cbfe","brightCyan":"#85befd","brightGreen":"#94fa36","brightPurple":"#b9b6fc","brightRed":"#fd5ff1","brightYellow":"#f5ffa8","black":"#000000","white":"#e0e0e0","blue":"#85befd","cyan":"#85befd","green":"#87c38a","purple":"#b9b6fc","red":"#fd5ff1","yellow":"#ffd7b1"},
{"name":"AtomOneLight", "foreground":"#2a2c33","background":"#f9f9f9","brightBlack":"#000000","brightWhite":"#ffffff","brightBlue":"#2f5af3","brightCyan":"#3f953a","brightGreen":"#3f953a","brightPurple":"#a00095","brightRed":"#de3e35","brightYellow":"#d2b67c","black":"#000000","white":"#bbbbbb","blue":"#2f5af3","cyan":"#3f953a","green":"#3f953a","purple":"#950095","red":"#de3e35","yellow":"#d2b67c"},
{"name":"ayu", "foreground":"#e6e1cf","background":"#0f1419","brightBlack":"#323232","brightWhite":"#ffffff","brightBlue":"#68d5ff","brightCyan":"#c7fffd","brightGreen":"#eafe84","brightPurple":"#ffa3aa","brightRed":"#ff6565","brightYellow":"#fff779","black":"#000000","white":"#ffffff","blue":"#36a3d9","cyan":"#95e6cb","green":"#b8cc52","purple":"#f07178","red":"#ff3333","yellow":"#e7c547"},
{"name":"ayu_light", "foreground":"#5c6773","background":"#fafafa","brightBlack":"#323232","brightWhite":"#ffffff","brightBlue":"#73d8ff","brightCyan":"#7ff1cb","brightGreen":"#b8e532","brightPurple":"#ffa3aa","brightRed":"#ff6565","brightYellow":"#ffc94a","black":"#000000","white":"#ffffff","blue":"#41a6d9","cyan":"#4dbf99","green":"#86b300","purple":"#f07178","red":"#ff3333","yellow":"#f29718"},
{"name":"Banana Blueberry", "foreground":"#cccccc","background":"#191323","brightBlack":"#495162","brightWhite":"#ffffff","brightBlue":"#91fff4","brightCyan":"#bcf3ff","brightGreen":"#98c379","brightPurple":"#da70d6","brightRed":"#fe9ea1","brightYellow":"#f9e46b","black":"#17141f","white":"#f1f1f1","blue":"#22e8df","cyan":"#56b6c2","green":"#00bd9c","purple":"#dc396a","red":"#ff6b7f","yellow":"#e6c62f"},
{"name":"Batman", "foreground":"#6f6f6f","background":"#1b1d1e","brightBlack":"#505354","brightWhite":"#dadbd6","brightBlue":"#919495","brightCyan":"#a3a3a6","brightGreen":"#fff27d","brightPurple":"#9a9a9d","brightRed":"#fff78e","brightYellow":"#feed6c","black":"#1b1d1e","white":"#c6c5bf","blue":"#737174","cyan":"#62605f","green":"#c8be46","purple":"#747271","red":"#e6dc44","yellow":"#f4fd22"},
{"name":"Belafonte Day", "foreground":"#45373c","background":"#d5ccba","brightBlack":"#5e5252","brightWhite":"#d5ccba","brightBlue":"#426a79","brightCyan":"#989a9c","brightGreen":"#858162","brightPurple":"#97522c","brightRed":"#be100e","brightYellow":"#eaa549","black":"#20111b","white":"#968c83","blue":"#426a79","cyan":"#989a9c","green":"#858162","purple":"#97522c","red":"#be100e","yellow":"#eaa549"},
{"name":"Belafonte Night", "foreground":"#968c83","background":"#20111b","brightBlack":"#5e5252","brightWhite":"#d5ccba","brightBlue":"#426a79","brightCyan":"#989a9c","brightGreen":"#858162","brightPurple":"#97522c","brightRed":"#be100e","brightYellow":"#eaa549","black":"#20111b","white":"#968c83","blue":"#426a79","cyan":"#989a9c",