Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. atom-text-editor.vim-mode.normal-mode,
  2. atom-text-editor.vim-mode.operator-pending-mode,
  3. atom-text-editor.vim-mode.visual-mode
  4. {
  5. &, // only keep this if you want to see the cursor on non-focused tabs
  6. &.is-focused {
  7. &::shadow, // shadow-DOM enabled
  8. & // shadow-DOM disabled
  9. {
  10. /* cursor color */
  11. .cursor {
  12. background-color: #ffffff;
  13. // cursor styles
  14. }
  15. .blink-off .cursor {
  16. background-color: #222222;
  17. opacity: 0;
  18. // cursor style while blinking (if you so desire)
  19. }
  20. /* bracket matcher */
  21. .bracket-matcher {
  22. background-color: #ffffff;
  23. opacity: 0.6 !important;
  24. width: 0.63em !important;
  25. }
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement