logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/etc_portage.git

619.patch (2329B)


  1. From b24be0909923f9f237accc98986128032d98b9db Mon Sep 17 00:00:00 2001
  2. From: Chris Rawnsley <chris@puny.agency>
  3. Date: Sun, 1 Oct 2017 20:32:12 +0100
  4. Subject: [PATCH] themes: add zenburn and make it the default 256 theme
  5. ---
  6. lua/themes/default-256.lua | 2 +-
  7. lua/themes/zenburn.lua | 39 +++++++++++++++++++++++++++++++++++++++
  8. 2 files changed, 40 insertions(+), 1 deletion(-)
  9. create mode 100644 lua/themes/zenburn.lua
  10. diff --git a/lua/themes/default-256.lua b/lua/themes/default-256.lua
  11. index 8479b1b5..e12776c0 120000
  12. --- a/lua/themes/default-256.lua
  13. +++ b/lua/themes/default-256.lua
  14. @@ -1 +1 @@
  15. -solarized.lua
  16. \ No newline at end of file
  17. +zenburn.lua
  18. \ No newline at end of file
  19. diff --git a/lua/themes/zenburn.lua b/lua/themes/zenburn.lua
  20. new file mode 100644
  21. index 00000000..f60e900f
  22. --- /dev/null
  23. +++ b/lua/themes/zenburn.lua
  24. @@ -0,0 +1,39 @@
  25. +-- A poor imitation of the original Vim colourscheme which can be
  26. +-- found at https://github.com/jnurmine/Zenburn
  27. +
  28. +local lexers = vis.lexers
  29. +
  30. +lexers.STYLE_DEFAULT = 'fore:#d7d7d7,back:#3a3a3a'
  31. +lexers.STYLE_NOTHING = ''
  32. +lexers.STYLE_CLASS = ''
  33. +lexers.STYLE_COMMENT = 'fore:#87af87'
  34. +lexers.STYLE_CONSTANT = 'fore:#d7afaf,bold'
  35. +lexers.STYLE_DEFINITION = 'fore:#ffd7af,bold'
  36. +lexers.STYLE_ERROR = 'fore:#87d7af,back:#303030,bold'
  37. +lexers.STYLE_FUNCTION = 'fore:#d7d7af'
  38. +lexers.STYLE_KEYWORD = 'fore:#afaf87,bold'
  39. +lexers.STYLE_LABEL = 'fore:#d7d7af'
  40. +lexers.STYLE_NUMBER = 'fore:#87d7d7'
  41. +lexers.STYLE_OPERATOR = 'fore:#ffffd7'
  42. +lexers.STYLE_REGEX = ''
  43. +lexers.STYLE_STRING = 'fore:#d78787'
  44. +lexers.STYLE_PREPROCESSOR = 'fore:#ffd7af,bold'
  45. +lexers.STYLE_TAG = 'fore:#d7afaf,bold'
  46. +lexers.STYLE_TYPE = 'fore:#d7d7af,bold'
  47. +lexers.STYLE_VARIABLE = ''
  48. +lexers.STYLE_WHITESPACE = ''
  49. +lexers.STYLE_EMBEDDED = ''
  50. +lexers.STYLE_IDENTIFIER = ''
  51. +
  52. +lexers.STYLE_LINENUMBER = 'fore:#585858'
  53. +lexers.STYLE_LINENUMBER_CURSOR = 'fore:#666666'
  54. +lexers.STYLE_CURSOR = 'back:#585858'
  55. +lexers.STYLE_CURSOR_PRIMARY = 'fore:#1c1c1c,back:#87afaf,bold'
  56. +lexers.STYLE_CURSOR_LINE = 'back:#444444'
  57. +lexers.STYLE_COLOR_COLUMN = 'back:#444444'
  58. +lexers.STYLE_SELECTION = 'back:#5f875f'
  59. +lexers.STYLE_STATUS = 'back:#262626,fore:#87af87'
  60. +lexers.STYLE_STATUS_FOCUSED = 'back:#303030,fore:#afaf87,bold'
  61. +lexers.STYLE_SEPARATOR = ''
  62. +lexers.STYLE_INFO = ''
  63. +lexers.STYLE_EOF = 'fore:#585858'