Last active
March 17, 2025 23:45
-
-
Save SansPapyrus683/a05edd9ac364d152b67d6219f2fa144e to your computer and use it in GitHub Desktop.
some config files (linux and windows)
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
[user] | |
name = Kevin Sheng | |
email = [email protected] | |
[credential] | |
helper = store | |
[core] | |
editor = nvim | |
[pull] | |
rebase = true | |
[push] | |
autoSetupRemote = true | |
[init] | |
defaultBranch = main |
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
" https://stackoverflow.com/a/234578/12128483 | |
filetype plugin indent on | |
" show existing tab with 4 spaces width | |
set tabstop=4 | |
" when indenting with '>', use 4 spaces width | |
set shiftwidth=4 | |
" On pressing tab, insert 4 spaces | |
set expandtab " set expandtab& to just indent w/ tabs | |
" https://vi.stackexchange.com/a/4250 | |
set softtabstop=4 | |
" https://superuser.com/a/35421/1503424 | |
set whichwrap+=<,>,h,l,[,] | |
" https://superuser.com/a/181381/1503424 | |
set autoread " apparently :e manually reloads asw | |
set list | |
" https://www.reddit.com/r/vim/comments/4hoa6e | |
set listchars=lead:·,tab:»\ ,trail:·,precedes:←,extends:→,eol:↲ | |
set number " just adds line numbers | |
set cursorline " highlights current line | |
set mouse=a " actually allows me to use my goddamned mouse | |
set virtualedit=onemore | |
set clipboard=unnamedplus | |
set cc=80,100 | |
set splitbelow splitright | |
set autochdir " https://superuser.com/a/604180 | |
" https://stackoverflow.com/a/11994072/12128483 | |
nnoremap d "_d | |
vnoremap d "_d | |
" https://superuser.com/a/760272 | |
inoremap <C-a> <esc>ggVG | |
nnoremap <C-a> ggVG | |
nnoremap <C-e> <C-w>w | |
" https://stackoverflow.com/a/55761306/12128483 | |
au TextChanged,TextChangedI <buffer> if &readonly == 0 && filereadable(bufname('%')) | silent write | endif | |
" https://github.com/junegunn/vim-plug | |
call plug#begin() | |
Plug 'arcticicestudio/nord-vim' | |
Plug 'tmsvg/pear-tree' | |
Plug 'scrooloose/nerdtree' | |
Plug 'vim-airline/vim-airline' | |
Plug 'zah/nim.vim' | |
call plug#end() | |
colorscheme nord | |
nnoremap <C-s> :NERDTreeToggle<CR> | |
" Start NERDTree and put the cursor back in the other window. | |
autocmd VimEnter * NERDTree | wincmd p | |
" Close the tab if NERDTree is the only window remaining in it. | |
autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif | |
" Open the existing NERDTree on each new tab. | |
autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif | |
" If another buffer tries to replace NERDTree, put it in the other window, and bring back NERDTree. | |
autocmd BufEnter * if bufname('#') =~ 'NERD_tree_\d\+' && bufname('%') !~ 'NERD_tree_\d\+' && winnr('$') > 1 | | |
\ let buf=bufnr() | buffer# | execute "normal! \<C-W>w" | execute 'buffer'.buf | endif | |
let NERDTreeShowHidden=1 |
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
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes | |
ZSH_THEME="robbyrussell" | |
# Set list of themes to pick from when loading at random | |
# Setting this variable when ZSH_THEME=random will cause zsh to load | |
# a theme from this variable instead of looking in $ZSH/themes/ | |
# If set to an empty array, this variable will have no effect. | |
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. | |
# Case-sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" | |
# Uncomment one of the following lines to change the auto-update behavior | |
# zstyle ':omz:update' mode disabled # disable automatic updates | |
zstyle ':omz:update' mode auto # update automatically without asking | |
# zstyle ':omz:update' mode reminder # just remind me to update when it's time | |
# Uncomment the following line if pasting URLs and other text is messed up. | |
# DISABLE_MAGIC_FUNCTIONS="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line if you want to disable marking untracked files | |
# under VCS as dirty. This makes repository status check for large repositories | |
# much, much faster. | |
DISABLE_UNTRACKED_FILES_DIRTY="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# You can set one of the optional three formats: | |
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
# or set a custom format using the strftime function format specifications, | |
# see 'man strftime' for details. | |
# HIST_STAMPS="mm/dd/yyyy" | |
# Would you like to use another custom folder than $ZSH/custom? | |
# ZSH_CUSTOM=/path/to/new-custom-folder | |
plugins=( | |
git | |
git-auto-fetch | |
zsh-syntax-highlighting | |
zsh-autosuggestions | |
) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
alias ipython="ipython3" | |
alias pyenv="source venv/bin/activate" | |
alias trash="rm -rf ~/.local/share/Trash/*" | |
alias vim="nvim" | |
alias config="nvim ~/.zshrc; source ~/.zshrc" # no idea if this is a good idea or not | |
alias nvimcfg="nvim ~/.config/nvim/init.lua" | |
alias stupidwifi="sudo nmcli con reload wlan0" | |
alias onedrive-log="journalctl --user-unit=onedrive -f" | |
alias edging="rm -rf ~/.config/microsoft-edge-beta/Singleton*" | |
alias g31="g++ -std=c++17 -Wall -Wextra -Wno-sign-compare -Werror=return-type -Wl,--rpath=/usr/local/cs/lib64 -fsanitize=address -fsanitize=undefined -fsanitize=bounds -fno-omit-frame-pointer" | |
export PATH=$PATH:/home/sanspapyrus683/.local/bin | |
export PAGER=most | |
export EDITOR=nvim |
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
[/] | |
default='cdb422d8-6f1a-44cb-b081-281b24ef3116' | |
list=['b1dcc9dd-5262-4d8d-a863-c897e6d979b9', 'cdb422d8-6f1a-44cb-b081-281b24ef3116'] | |
[:b1dcc9dd-5262-4d8d-a863-c897e6d979b9] | |
cursor-shape='ibeam' | |
default-size-rows=36 | |
use-theme-colors=true | |
visible-name='Builtin' | |
[:cdb422d8-6f1a-44cb-b081-281b24ef3116] | |
background-color='#2E3440' | |
bold-color='#D8DEE9' | |
bold-color-same-as-fg=true | |
cursor-background-color='rgb(216,222,233)' | |
cursor-colors-set=true | |
cursor-foreground-color='rgb(59,66,82)' | |
cursor-shape='ibeam' | |
custom-command='zsh' | |
default-size-columns=150 | |
default-size-rows=36 | |
foreground-color='#D8DEE9' | |
highlight-background-color='rgb(136,192,208)' | |
highlight-colors-set=true | |
highlight-foreground-color='rgb(46,52,64)' | |
nord-gnome-terminal-version='0.1.0' | |
palette=['#3B4252', '#BF616A', '#A3BE8C', '#EBCB8B', '#81A1C1', '#B48EAD', '#88C0D0', '#E5E9F0', '#4C566A', '#BF616A', '#A3BE8C', '#EBCB8B', '#81A1C1', '#B48EAD', '#8FBCBB', '#ECEFF4'] | |
use-custom-command=true | |
use-theme-background=false | |
use-theme-colors=false | |
use-theme-transparency=false | |
use-transparent-background=false | |
visible-name='Nord' |
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
-- https://stackoverflow.com/a/234578/12128483 | |
vim.cmd('filetype plugin indent on') | |
-- show existing tab with 4 spaces width | |
vim.opt.tabstop = 4 | |
-- when indenting with '>', use 4 spaces width | |
vim.opt.shiftwidth = 4 | |
-- On pressing tab, insert 4 spaces | |
vim.opt.expandtab = true -- set expandtab& to just indent w/ tabs | |
-- https://vi.stackexchange.com/a/4250 | |
vim.opt.softtabstop = 4 | |
vim.opt.guicursor="a:ver10" | |
-- https://superuser.com/a/35421/1503424 | |
vim.opt.whichwrap:append("<,>,h,l,[,]") | |
-- https://superuser.com/a/181381/1503424 | |
vim.opt.autoread = true -- apparently :e manually reloads asw | |
vim.opt.list = true | |
-- https://www.reddit.com/r/vim/comments/4hoa6e | |
vim.opt.listchars = { lead = '·', tab = '» ', trail = '·', precedes = '←', extends = '→', eol = '↲' } | |
vim.opt.number = true -- just adds line numbers | |
vim.opt.cursorline = true -- highlights current line | |
vim.opt.mouse = 'a' -- actually allows me to use my goddamned mouse | |
vim.opt.virtualedit = 'onemore' | |
vim.opt.clipboard = 'unnamedplus' | |
vim.opt.cc = '80,100' | |
vim.opt.splitbelow = true | |
vim.opt.splitright = true | |
vim.opt.autochdir = true -- https://superuser.com/a/604180 | |
-- https://stackoverflow.com/a/11994072/12128483 | |
vim.api.nvim_set_keymap('n', 'd', '"_d', { noremap = true }) | |
vim.api.nvim_set_keymap('v', 'd', '"_d', { noremap = true }) | |
-- https://superuser.com/a/760272 | |
vim.api.nvim_set_keymap('i', '<C-a>', '<esc>ggVG', { noremap = true }) | |
vim.api.nvim_set_keymap('n', '<C-a>', 'ggVG', { noremap = true }) | |
vim.api.nvim_set_keymap('n', '<C-e>', '<C-w>w', { noremap = true }) | |
-- https://stackoverflow.com/a/55761306/12128483 | |
vim.api.nvim_exec([[ | |
autocmd TextChanged,TextChangedI <buffer> if &readonly == 0 && filereadable(bufname('%')) | silent write | endif | |
]], false) | |
-- https://github.com/junegunn/vim-plug | |
local Plug = vim.fn['plug#'] | |
vim.call('plug#begin') | |
Plug('arcticicestudio/nord-vim') | |
Plug('tmsvg/pear-tree') | |
Plug('scrooloose/nerdtree') | |
Plug('vim-airline/vim-airline') | |
Plug('xiyaowong/transparent.nvim') | |
vim.call('plug#end') | |
vim.g.transparent_enabled = true | |
vim.cmd('colorscheme nord') | |
vim.api.nvim_set_keymap('n', '<C-s>', ':NERDTreeToggle<CR>', { noremap = true }) | |
-- Start NERDTree and put the cursor back in the other window. | |
-- vim.cmd('autocmd VimEnter * NERDTree | wincmd p') | |
-- Close the tab if NERDTree is the only window remaining in it. | |
vim.cmd('autocmd BufEnter * if winnr(\'$\') == 1 && exists(\'b:NERDTree\') && b:NERDTree.isTabTree() | quit | endif') | |
-- Open the existing NERDTree on each new tab. | |
vim.cmd('autocmd BufWinEnter * if getcmdwintype() == \'\' | silent NERDTreeMirror | endif') | |
-- If another buffer tries to replace NERDTree, put it in the other window, and bring back NERDTree. | |
vim.cmd([[ | |
autocmd BufEnter * if bufname('#') =~ 'NERD_tree_\\d\\+' && bufname('%') !~ 'NERD_tree_\\d\\+' && winnr('$') > 1 | | |
\ let buf=bufnr() | buffer# | execute "normal! \<C-W>w" | execute 'buffer'.buf | endif | |
]]) | |
vim.g.NERDTreeShowHidden = 1 |
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
include ./nord.conf | |
cursor_shape beam | |
confirm_os_window_close 0 | |
background_image ~/OneDrive/Pictures/background/other/is3.jpg | |
background_image_layout cscaled | |
background_opacity 1 | |
background_tint 0.9 | |
inactive_text_alpha 0.5 | |
linux_display_server x11 | |
enabled_layouts splits | |
map ctrl+c copy_or_interrupt | |
map ctrl+v paste_from_clipboard | |
map ctrl+t launch --location=vsplit --cwd=current | |
map ctrl+d launch --location=hsplit --cwd=current | |
map ctrl+w close_window | |
map ctrl+left resize_window narrower | |
map ctrl+right resize_window wider | |
map ctrl+up resize_window taller | |
map ctrl+down resize_window shorter 3 | |
map ctrl+home resize_window reset # reset to defaults | |
map ctrl+f launch --type=overlay --stdin-source=@screen_scrollback fzf --no-sort --no-mouse --exact -i | |
# jesus christ | |
map ctrl+1 first_window | |
map ctrl+2 second_window | |
map ctrl+3 third_window | |
map ctrl+4 fourth_window | |
map ctrl+5 fifth_window | |
map ctrl+6 sixth_window | |
map ctrl+7 seventh_window | |
map ctrl+8 eigth_window | |
map ctrl+9 ninth_window | |
map ctrl+tab next_window | |
map ctrl+shift+tab previous_window | |
map ctrl+shift+1 goto_tab 1 | |
map ctrl+shift+2 goto_tab 2 | |
map ctrl+shift+3 goto_tab 3 | |
map ctrl+shift+4 goto_tab 4 | |
map ctrl+shift+5 goto_tab 5 | |
map ctrl+shift+6 goto_tab 6 | |
map ctrl+shift+7 goto_tab 7 | |
map ctrl+shift+8 goto_tab 8 | |
map ctrl+shift+9 goto_tab 9 |
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
{ | |
"$help": "https://aka.ms/terminal-documentation", | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "newTab" | |
}, | |
"keys": "ctrl+t" | |
}, | |
{ | |
"command": | |
{ | |
"action": "copy", | |
"singleLine": false | |
}, | |
"keys": "ctrl+c" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 3 | |
}, | |
"keys": "ctrl+4" | |
}, | |
{ | |
"command": "paste", | |
"keys": "ctrl+v" | |
}, | |
{ | |
"command": | |
{ | |
"action": "splitPane", | |
"split": "auto", | |
"splitMode": "duplicate" | |
}, | |
"keys": "alt+shift+d" | |
}, | |
{ | |
"command": "find", | |
"keys": "ctrl+f" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+1" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+2" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+3" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+4" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+5" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+6" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+7" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+8" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+alt+9" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+shift+w" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+shift+f" | |
}, | |
{ | |
"command": "unbound", | |
"keys": "ctrl+shift+t" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 7 | |
}, | |
"keys": "ctrl+8" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 4 | |
}, | |
"keys": "ctrl+5" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 0 | |
}, | |
"keys": "ctrl+1" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 1 | |
}, | |
"keys": "ctrl+2" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 2 | |
}, | |
"keys": "ctrl+3" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 5 | |
}, | |
"keys": "ctrl+6" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 6 | |
}, | |
"keys": "ctrl+7" | |
}, | |
{ | |
"command": | |
{ | |
"action": "switchToTab", | |
"index": 4294967295 | |
}, | |
"keys": "ctrl+9" | |
}, | |
{ | |
"command": "closePane", | |
"keys": "ctrl+w" | |
} | |
], | |
"copyFormatting": "none", | |
"copyOnSelect": false, | |
"confirmCloseAllTabs": false, | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"newTabMenu": | |
[ | |
{ | |
"type": "remainingProfiles" | |
} | |
], | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"backgroundImage": "C:/Users/kevin/OneDrive/Pictures/background/ide/rhine1.jpg", | |
"backgroundImageOpacity": 0.15, | |
"colorScheme": "Nord" | |
}, | |
"list": | |
[ | |
{ | |
"commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"hidden": false, | |
"name": "Windows PowerShell" | |
}, | |
{ | |
"commandline": "%SystemRoot%\\System32\\cmd.exe", | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"hidden": false, | |
"name": "Command Prompt" | |
} | |
] | |
}, | |
"schemes": | |
[ | |
{ | |
"background": "#0C0C0C", | |
"black": "#0C0C0C", | |
"blue": "#0037DA", | |
"brightBlack": "#767676", | |
"brightBlue": "#3B78FF", | |
"brightCyan": "#61D6D6", | |
"brightGreen": "#16C60C", | |
"brightPurple": "#B4009E", | |
"brightRed": "#E74856", | |
"brightWhite": "#F2F2F2", | |
"brightYellow": "#F9F1A5", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#3A96DD", | |
"foreground": "#CCCCCC", | |
"green": "#13A10E", | |
"name": "Campbell", | |
"purple": "#881798", | |
"red": "#C50F1F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#CCCCCC", | |
"yellow": "#C19C00" | |
}, | |
{ | |
"background": "#012456", | |
"black": "#0C0C0C", | |
"blue": "#0037DA", | |
"brightBlack": "#767676", | |
"brightBlue": "#3B78FF", | |
"brightCyan": "#61D6D6", | |
"brightGreen": "#16C60C", | |
"brightPurple": "#B4009E", | |
"brightRed": "#E74856", | |
"brightWhite": "#F2F2F2", | |
"brightYellow": "#F9F1A5", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#3A96DD", | |
"foreground": "#CCCCCC", | |
"green": "#13A10E", | |
"name": "Campbell Powershell", | |
"purple": "#881798", | |
"red": "#C50F1F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#CCCCCC", | |
"yellow": "#C19C00" | |
}, | |
{ | |
"background": "#2E3440", | |
"black": "#3B4252", | |
"blue": "#81A1C1", | |
"brightBlack": "#4C566A", | |
"brightBlue": "#81A1C1", | |
"brightCyan": "#8FBCBB", | |
"brightGreen": "#A3BE8C", | |
"brightPurple": "#B48EAD", | |
"brightRed": "#BF616A", | |
"brightWhite": "#ECEFF4", | |
"brightYellow": "#EBCB8B", | |
"cursorColor": "#81A1C1", | |
"cyan": "#88C0D0", | |
"foreground": "#D8DEE9", | |
"green": "#A3BE8C", | |
"name": "Nord", | |
"purple": "#B48EAD", | |
"red": "#BF616A", | |
"selectionBackground": "#434C5E", | |
"white": "#E5E9F0", | |
"yellow": "#EBCB8B" | |
}, | |
{ | |
"background": "#282C34", | |
"black": "#282C34", | |
"blue": "#61AFEF", | |
"brightBlack": "#5A6374", | |
"brightBlue": "#61AFEF", | |
"brightCyan": "#56B6C2", | |
"brightGreen": "#98C379", | |
"brightPurple": "#C678DD", | |
"brightRed": "#E06C75", | |
"brightWhite": "#DCDFE4", | |
"brightYellow": "#E5C07B", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#56B6C2", | |
"foreground": "#DCDFE4", | |
"green": "#98C379", | |
"name": "One Half Dark", | |
"purple": "#C678DD", | |
"red": "#E06C75", | |
"selectionBackground": "#FFFFFF", | |
"white": "#DCDFE4", | |
"yellow": "#E5C07B" | |
}, | |
{ | |
"background": "#FAFAFA", | |
"black": "#383A42", | |
"blue": "#0184BC", | |
"brightBlack": "#4F525D", | |
"brightBlue": "#61AFEF", | |
"brightCyan": "#56B5C1", | |
"brightGreen": "#98C379", | |
"brightPurple": "#C577DD", | |
"brightRed": "#DF6C75", | |
"brightWhite": "#FFFFFF", | |
"brightYellow": "#E4C07A", | |
"cursorColor": "#4F525D", | |
"cyan": "#0997B3", | |
"foreground": "#383A42", | |
"green": "#50A14F", | |
"name": "One Half Light", | |
"purple": "#A626A4", | |
"red": "#E45649", | |
"selectionBackground": "#FFFFFF", | |
"white": "#FAFAFA", | |
"yellow": "#C18301" | |
}, | |
{ | |
"background": "#002B36", | |
"black": "#002B36", | |
"blue": "#268BD2", | |
"brightBlack": "#073642", | |
"brightBlue": "#839496", | |
"brightCyan": "#93A1A1", | |
"brightGreen": "#586E75", | |
"brightPurple": "#6C71C4", | |
"brightRed": "#CB4B16", | |
"brightWhite": "#FDF6E3", | |
"brightYellow": "#657B83", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#2AA198", | |
"foreground": "#839496", | |
"green": "#859900", | |
"name": "Solarized Dark", | |
"purple": "#D33682", | |
"red": "#DC322F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#EEE8D5", | |
"yellow": "#B58900" | |
}, | |
{ | |
"background": "#FDF6E3", | |
"black": "#002B36", | |
"blue": "#268BD2", | |
"brightBlack": "#073642", | |
"brightBlue": "#839496", | |
"brightCyan": "#93A1A1", | |
"brightGreen": "#586E75", | |
"brightPurple": "#6C71C4", | |
"brightRed": "#CB4B16", | |
"brightWhite": "#FDF6E3", | |
"brightYellow": "#657B83", | |
"cursorColor": "#002B36", | |
"cyan": "#2AA198", | |
"foreground": "#657B83", | |
"green": "#859900", | |
"name": "Solarized Light", | |
"purple": "#D33682", | |
"red": "#DC322F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#EEE8D5", | |
"yellow": "#B58900" | |
}, | |
{ | |
"background": "#000000", | |
"black": "#000000", | |
"blue": "#3465A4", | |
"brightBlack": "#555753", | |
"brightBlue": "#729FCF", | |
"brightCyan": "#34E2E2", | |
"brightGreen": "#8AE234", | |
"brightPurple": "#AD7FA8", | |
"brightRed": "#EF2929", | |
"brightWhite": "#EEEEEC", | |
"brightYellow": "#FCE94F", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#06989A", | |
"foreground": "#D3D7CF", | |
"green": "#4E9A06", | |
"name": "Tango Dark", | |
"purple": "#75507B", | |
"red": "#CC0000", | |
"selectionBackground": "#FFFFFF", | |
"white": "#D3D7CF", | |
"yellow": "#C4A000" | |
}, | |
{ | |
"background": "#FFFFFF", | |
"black": "#000000", | |
"blue": "#3465A4", | |
"brightBlack": "#555753", | |
"brightBlue": "#729FCF", | |
"brightCyan": "#34E2E2", | |
"brightGreen": "#8AE234", | |
"brightPurple": "#AD7FA8", | |
"brightRed": "#EF2929", | |
"brightWhite": "#EEEEEC", | |
"brightYellow": "#FCE94F", | |
"cursorColor": "#000000", | |
"cyan": "#06989A", | |
"foreground": "#555753", | |
"green": "#4E9A06", | |
"name": "Tango Light", | |
"purple": "#75507B", | |
"red": "#CC0000", | |
"selectionBackground": "#FFFFFF", | |
"white": "#D3D7CF", | |
"yellow": "#C4A000" | |
}, | |
{ | |
"background": "#000000", | |
"black": "#000000", | |
"blue": "#000080", | |
"brightBlack": "#808080", | |
"brightBlue": "#0000FF", | |
"brightCyan": "#00FFFF", | |
"brightGreen": "#00FF00", | |
"brightPurple": "#FF00FF", | |
"brightRed": "#FF0000", | |
"brightWhite": "#FFFFFF", | |
"brightYellow": "#FFFF00", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#008080", | |
"foreground": "#C0C0C0", | |
"green": "#008000", | |
"name": "Vintage", | |
"purple": "#800080", | |
"red": "#800000", | |
"selectionBackground": "#FFFFFF", | |
"white": "#C0C0C0", | |
"yellow": "#808000" | |
} | |
], | |
"themes": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment