Last active
February 28, 2019 17:12
-
-
Save DavidLGoldberg/166646fce043710ef920 to your computer and use it in GitHub Desktop.
Green cursor (slight pulse) for Atom editor with vim-mode
This file contains hidden or 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
.editor.vim-mode.command-mode::shadow { | |
.cursor.idle, .cursor.idle.blink-off { | |
background-color: #00ff44; // bright green | |
visibility: visible; | |
opacity: .5; | |
border-style: solid; | |
border-width: 1px; | |
border-color: #ff0000; // bright red | |
} | |
.cursor.idle.blink-off { | |
//visibility: hidden; // make hidden for complete blink | |
opacity: .55; // weird subtle little pulse, almost can't see it. | |
} | |
} | |
// with react: | |
.editor.vim-mode.command-mode::shadow { | |
.cursors .cursor, .cursors.blink-off .cursor { | |
background-color: #00ff44; // bright green | |
visibility: visible; | |
opacity: .6; | |
border-style: solid; | |
border-width: 1px; | |
//border-color: #ff0000; // bright red | |
border-color: #FFFFFF; // white | |
} | |
.cursors.blink-off .cursor { | |
//visibilaity: hidden; // make hidden for complete blink | |
opacity: .63; // weird subtle little pulse, almost can't see it. | |
} | |
} |
added ::shadow
How about non-vim?
This is awesome!! Thax bro :)
Unfortunately, this no longer works, I'll have to try to get this working again one day or find a better one.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put this in your "Atom" -> "Open Your Stylesheet" less file.