This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
| set nocompatible " Disable vi-compatibility | |
| set t_Co=256 | |
| colorscheme xoria256 | |
| set guifont=menlo\ for\ powerline:h16 | |
| set guioptions-=T " Removes top toolbar | |
| set guioptions-=r " Removes right hand scroll bar | |
| set go-=L " Removes left hand scroll bar | |
| set linespace=15 |
| <x-layout> | |
| <x-section> | |
| <x-tabs active="First"> | |
| <x-tab name="First"> | |
| First content goes here. | |
| </x-tab> | |
| <x-tab name="Second"> | |
| Second content goes here. | |
| </x-tab> |
| syntax enable | |
| colorscheme desert | |
| "-------------General Settings--------------" | |
| set backspace=indent,eol,start "Make backspace behave like every other editor. | |
| let mapleader = ',' "The default leader is \, but a comma is much better. | |
| set number "Let's activate line numbers. |
| import { defineStore } from "pinia"; | |
| export let useCounterStore = defineStore('counter', { | |
| // data | |
| state() { | |
| return { | |
| count: 5 | |
| }; | |
| }, |
| <template> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th v-for="column in parameters.columns" v-html="title(column)"></th> | |
| </tr> | |
| </thead> | |
| <tfoot v-if="footer"> | |
| <tr> | |
| <th v-for="column in parameters.columns" v-html="column.footer"></th> |
This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { "key": "alt+n", "command": "explorer.newFile" }, | |
| { "key": "alt+shift+s", "command": "PowerShell.InvokeRegisteredEditorCommand", | |
| "args": { "commandName": "ConvertToSplatExpression" }, | |
| "when": "editorLangId == 'powershell'" }, | |
| { "key": "ctrl+shift+s", "command": "workbench.action.files.saveAll" }, | |
| { "key": "ctrl+shift+t", "command": "workbench.action.tasks.test" }, | |
| { "key": "alt+shift+t", "command": "workbench.action.tasks.runTask" }, | |
| { "key": "ctrl+`", "command": "workbench.action.focusActiveEditorGroup", |