Skip to content

Instantly share code, notes, and snippets.

@sjava
Forked from romgrk/nyaovimrc.html
Created December 25, 2016 09:47
Show Gist options
  • Save sjava/9c591521898a5d390b8faa07cfafc877 to your computer and use it in GitHub Desktop.
Save sjava/9c591521898a5d390b8faa07cfafc877 to your computer and use it in GitHub Desktop.
<dom-module id="nyaovim-app">
<template>
<style>
html,body {
background: transparent;
}
@keyframes blink {
0% {
opacity: 1.0;
animation-timing-function: ease-in;
}
50% {
opacity: 0.0;
animation-timing-function: ease-in-out;
}
100% {
opacity: 1.0;
}
}
neovim-editor::shadow .neovim-editor.neovim-cursor.style-scope {
margin: 1px 0 0 0;
opacity: 0.4;
/*border: 1px solid rgba(89,158,255,0.4); */
background-color: #599eff;
box-shadow: 0 0 9px rgba(255,255,255,0.7);
transition: all
transition: 0.15s
transition: cubic-bezier(0.38, 0.75, 0.43, 0.88);
animation-name: blink;
animation-duration: 1s;
animation-iteration-count: infinite;
}
</style>
<!-- font="Input Mono" -->
<neovim-editor
id="nyaovim-editor"
font="Droid Sans Mono for Powerline"
font-size="14"
argv$="[[argv]]"></neovim-editor>
<running-gopher editor="[[editor]]"></running-gopher>
</template>
</dom-module>
<script src="./init.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment