Skip to content

Instantly share code, notes, and snippets.

View klgh's full-sized avatar
👩‍💻

Kaleigh Scruggs klgh

👩‍💻
View GitHub Profile
@klgh
klgh / reset.scss
Created January 6, 2024 17:01
reset.scss
/* makes sizing simpler */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* remove default spacing */
/* force styling of type through styling, rather than elements */
* {
@klgh
klgh / .prettierrc
Last active May 9, 2022 19:09
my fav prettier formats
{
"semi": false,
"trailingComma": "none",
"bracketSpacing": true,
"singleQuote": true,
"overrides": [
{
"files": ["**/*.css", "**/*.scss", "**/*.html"],
"options": {
"singleQuote": false
::-webkit-scrollbar {
-webkit-appearance: none;
width: 6px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: map-get($mat-grey, 400);
-webkit-box-shadow: 0 0 1px map-get($mat-grey, 600);
}
@klgh
klgh / .zshrc _SE
Last active March 29, 2023 18:11
my oh my zsh settings
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
#Homebrew
#echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.zshrc
fpath+=${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions/src
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
@klgh
klgh / settings.json
Last active May 11, 2021 19:10
VS Code Settings w/touchbar options
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "New Moon",
"workbench.startupEditor": "newUntitledFile",
"material-icon-theme.activeIconPack": "react",
"editor.wordWrap": "on",
"editor.fastScrollSensitivity": 10,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 200,
"editor.smoothScrolling": true,