Skip to content

Instantly share code, notes, and snippets.

View furopi's full-sized avatar

furopi furopi

View GitHub Profile
@furopi
furopi / style.css
Last active March 1, 2025 15:31
Userscript CSS
.root-element {
font-size: 16px;
font-family: "Roboto", sans-serif;
color: #4c4c4c;
}
.sticky-left {
position: fixed;
transform: translate(-50%, 0%);
transition: transform 0.5s;
@killshot13
killshot13 / settings.jsonc
Last active December 25, 2024 05:11
vscode-colorized-brackets
{
// Controls whether bracket pair colorization is enabled or not. Use 'workbench.colorCustomizations' to override the bracket highlight colors.
"editor.bracketPairColorization.enabled": true,
// Controls whether the editor should render indent guides.
"editor.guides.indentation": true,
// Controls whether bracket pair guides are enabled or not.
// - true: Enables bracket pair guides.
// - active: Enables bracket pair guides only for the active bracket pair.
// - false: Disables bracket pair guides.
"editor.guides.bracketPairs": "active",