Giter VIP home page Giter VIP logo

sublime's Introduction

Sublime settings and snippets

ayu theme with customized preferences. See Setup for info on how to set up your Sublime Text for these snippets.

Note: Snippet docs below are out of date.

Snippets

CSS

anim animation: ${1:name} 0.5s linear 0s forwards;

bsh box-shadow: ${1:0} ${2:1px} ${3:5px} rgba(0,0,0,${4:0.15}); $0

com Add a comment, useful for headings /* $1 */ $0  

cd cursor: default;

cp cursor: pointer;

db display: block;

df display: flex;

dg display: grid;

di display: inline;

dib display: inline-block;

dn display: none;

fs font-size: $1;$0

fw font-weight: ${1:400};$0

key

@keyframes $1 {
	0% { $2 }
	100% { $3 }
}

hs $1 h1, $1 h2, $1 h3, $1 h4, $1 h5, $1 h6 { $2 }

mau margin: ${1:0} auto; $0

noselect user-select: none;

oh overflow: hidden;

op opacity: ${1:1}; $0

pabs position: absolute;

pafill position: absolute; top: 0; right: 0; bottom: 0; left: 0;

pr padding-right: $1; $0

pfix position: fixed;

prel position: relative;

rgb rgb(${1:255}, ${2:255}, ${3:255}); $0

rgba rgba(${1:255}, ${2:255}, ${3:255}, ${4:1}); $0

tac text-align: center;

tal text-align: left;

tar text-align: right;

tra transition: ${1:all} ${2:0.15}s ${3:ease};

tsh text-shadow: ${1:0} ${2:1px} ${3:5px} rgba(0,0,0,${4:0.15}); $0

var var(--$1)$0

vat vertical-align: top;

:aft :after { $1 content: ''; }

:bef :before { $1 content: ''; }

:fc :first-child { $1 }

:lc :last-child { $1 }

Chunks

cols

.${1:class} { $2 }
    .${1:class} li { width: ${3:33%}; display: inline-block; }
$0

fbase

form { $1 }
    input[type='text'], textarea { $2 }
    input[type='submit'] { $3 }

Partials

base Base CSS file (with simple common settings)

responsive Responsive media query (with simple common settings)

HTML

a <a href="$1">$2</a>$0

base Base HTML template

c <${1:component}$2></${1:component}>$0

com Add a comment <!-- $1 -->$0

dc Add a comment <div class=!-- $1 -->$0

ga Google Analytics snippet

sc Span with class <span class="$1">$2</span>$0

sec Section with class <section class="$1">$2</section>$0

Javascript

Javascript style is no semicolons and tab indenting.

cl console.log($1)$0

com Add a comment /* $1 */ $0  

method

${1:name}: function ($2) {
		$3
},

si

setInterval(function() {
	${2}
}, ${1:1000})$0

st

setTimeout(function() {
	${2}
}, ${1:1000})$0

vst var self = this

Node

me module.exports = ${1:name}

pe process.exit(${1:0})$0

re var ${1:module} = require('${1:module}')$0

Vue

import import ${1:module} from './${1:module}'$0

vcdata

data () {
	return {
		${1:name}: ${2:data}
	}
},$0

vcomponent Base Vue component

vdirective Base Vue directive


Setup

Set up theme

  • Install Package Control: Cmd + Shift + P -> Install Package Manager

  • Install and activate ayu theme: https://packagecontrol.io/packages/ayu Cmd + Shift + P -> ayu: Activate theme -> ayu mirage

  • Set up a symlink between repo preferences and sublime preferences, e.g. ln -s ~/Projects/sublime/Preferences.sublime-settings ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/Preferences.sublime-settings

Link snippets

  • Set up a symlink between this repo's snippets folder and Sublime's User Settings folder, e.g. ln -s ~/Projects/sublime/Snippets/ ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/

Why Sublime?

It's simple and fast, e.g.: https://pavelfatin.com/typing-with-pleasure/ https://blog.xinhong.me/post/sublime-text-vs-vscode-vs-atom-performance-dec-2016/

sublime's People

Contributors

levibe avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.