Skip to content

Instantly share code, notes, and snippets.

@SansPapyrus683
Last active March 28, 2024 04:27
Show Gist options
  • Save SansPapyrus683/a05edd9ac364d152b67d6219f2fa144e to your computer and use it in GitHub Desktop.
Save SansPapyrus683/a05edd9ac364d152b67d6219f2fa144e to your computer and use it in GitHub Desktop.
some config files (linux and windows)
" 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
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# 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 to change how often to auto-update (in days).
# zstyle ':omz:update' frequency 13
# 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 to display red dots whilst waiting for completion.
# You can also set it to another string to have that shown instead of the default red dots.
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
# COMPLETION_WAITING_DOTS="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
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
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 jupconsole="jupyter console --existing"
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 GOPATH=~/go
export PATH=$PATH:~/.nimble/bin:/usr/local/go/bin:$GOPATH/bin:/home/sanspapyrus683/.local/bin
export PAGER=most
[/]
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'
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-theme-background=false
use-theme-colors=false
use-theme-transparency=false
use-transparent-background=false
visible-name='Nord'
-- 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('zah/nim.vim')
vim.call('plug#end')
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
{
"$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.5,
"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"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
]
},
"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": []
}
[/]
background-image='/home/sanspapyrus683/OneDrive/Pictures/background/other/saileach.jpg'
prompt-on-close-process=false
quake-specific-monitor=0
terminal-title-style='none'
window-style='normal'
[keybindings]
app-new-session='<Primary><Shift>n'
app-new-window='disabled'
nautilus-open='<Primary><Alt>t'
session-add-auto='disabled'
session-add-down='<Primary><Shift>d'
session-add-right='<Primary><Shift>t'
session-close='<Alt>F4'
session-switch-to-terminal-0='disabled'
session-switch-to-terminal-1='<Primary>1'
session-switch-to-terminal-2='<Primary>2'
session-switch-to-terminal-3='<Primary>3'
session-switch-to-terminal-4='<Primary>4'
session-switch-to-terminal-5='<Primary>5'
session-switch-to-terminal-6='<Primary>6'
session-switch-to-terminal-7='<Primary>7'
session-switch-to-terminal-8='<Primary>8'
session-switch-to-terminal-9='<Primary>9'
terminal-close='<Primary><Shift>w'
terminal-copy='<Primary>c'
terminal-find='<Primary><Shift>f'
terminal-find-next='disabled'
terminal-find-previous='disabled'
terminal-paste='<Primary><Shift>v'
terminal-select-all='disabled'
terminal-zoom-in='<Primary>equal'
win-switch-to-session-0='disabled'
win-switch-to-session-1='<Primary>exclam'
win-switch-to-session-2='<Primary>at'
win-switch-to-session-3='<Primary>numbersign'
win-switch-to-session-4='<Primary>dollar'
win-switch-to-session-5='<Primary>percent'
win-switch-to-session-6='<Primary>asciicircum'
win-switch-to-session-7='<Primary>ampersand'
win-switch-to-session-8='<Primary>asterisk'
win-switch-to-session-9='<Primary>parenleft'
[profiles/2b7c4080-0ddd-46c5-8f23-563fd3ba789d]
background-color='#2E3440'
background-transparency-percent=25
badge-color-set=false
bold-color-set=false
cursor-colors-set=false
cursor-shape='ibeam'
default-size-columns=150
default-size-rows=36
dim-transparency-percent=25
draw-margin=64
font='Fira Code Medium 11'
foreground-color='#D8DEE9'
highlight-colors-set=false
palette=['#3B4252', '#BF616A', '#A3BE8C', '#EBCB8B', '#81A1C1', '#B48EAD', '#88C0D0', '#E5E9F0', '#4C566A', '#BF616A', '#A3BE8C', '#EBCB8B', '#81A1C1', '#B48EAD', '#8FBCBB', '#ECEFF4']
use-system-font=false
use-theme-colors=false
visible-name='Default'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment