This file contains 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
atom-text-editor { | |
font-family: 'Operator Mono', 'FiraCode', monospace !important; | |
font-size: 13.5px; | |
font-weight: 500; | |
font-style: normal; | |
letter-spacing: 0.0175em; | |
line-height: 1.6; | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
&.editor .syntax--string.syntax--quoted, |
This file contains 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
# ~/.bash_profile | |
[[ -s ~/.bashrc ]] && source ~/.bashrc | |
export CLICOLOR=1 | |
export LSCOLORS=gxBxhxDxdxhxhxhxhxcxbx | |
export TERM=xterm-256color | |
alias lc='colorls' | |
alias ls='ls -GFh' |
This file has been truncated, but you can view the full file.
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AllowClipboardAccess</key> | |
<true/> | |
<key>AlternateMouseScroll</key> | |
<true/> | |
<key>AppleAntiAliasingThreshold</key> | |
<integer>1</integer> |
This file contains 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
// Gulpfile.js | |
const autoprefixer = require('autoprefixer'); | |
const browserSync = require('browser-sync').create(); | |
const concat = require('gulp-concat'); | |
const cssnano = require('cssnano'); | |
const del = require('del'); | |
const gulp = require('gulp'); | |
const gutil = require('gulp-util'); | |
const imagemin = require('gulp-imagemin'); |
This file contains 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
/** | |
* Syntax highlighting styles | |
*/ | |
$syntax-hue: 270; | |
$syntax-saturation: 4%; | |
$syntax-brightness: 15%; | |
$base: hsl($syntax-hue, $syntax-saturation, $syntax-brightness); | |
$text: hsl($syntax-hue, 9%, 87%); |
This file contains 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
:root.theme-dark { | |
/* --theme-body-background: var(--grey-80); */ | |
--theme-body-background: #2c292e !important; | |
--theme-body-background: hsl(270,4%,17%) !important; | |
--theme-sidebar-background: #202020 !important; | |
--theme-contrast-background: #efb35b !important; | |
/* Toolbar */ | |
--theme-tab-toolbar-background: #202020 !important; | |
--theme-toolbar-background: #202020 !important; |
This file contains 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
--- | |
title: | |
desc: | |
date: | |
options: | |
image: | |
categories: | |
tags: | |
priority: | |
--- |
This file contains 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
var gulp = require('gulp'), | |
shell = require('gulp-shell'), | |
minifyHTML = require('gulp-minify-html'), | |
sass = require('gulp-sass'), | |
importCss = require('gulp-import-css'), | |
autoprefixer = require('gulp-autoprefixer'), | |
uncss = require('gulp-uncss'), | |
minifyCss = require('gulp-minify-css'), | |
rename = require('gulp-rename'), | |
glob = require('glob'), |
NewerOlder