alacritty.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. background_opacity: 0.92
  2. font:
  3. size: 14
  4. window:
  5. padding:
  6. x: 0
  7. y: 0
  8. decorations: full
  9. dynamic_padding: true
  10. schemes:
  11. ayudark: &ayudark # Default colors
  12. primary:
  13. background: "0x0A0E14"
  14. foreground: "0xB3B1AD"
  15. # Normal colors
  16. normal:
  17. black: "0x01060E"
  18. red: "0xEA6C73"
  19. green: "0x91B362"
  20. yellow: "0xF9AF4F"
  21. blue: "0x53BDFA"
  22. magenta: "0xFAE994"
  23. cyan: "0x90E1C6"
  24. white: "0xC7C7C7"
  25. # Bright colors
  26. bright:
  27. black: "0x686868"
  28. red: "0xF07178"
  29. green: "0xC2D94C"
  30. yellow: "0xFFB454"
  31. blue: "0x59C2FF"
  32. magenta: "0xFFEE99"
  33. cyan: "0x95E6CB"
  34. white: "0xFFFFFF"
  35. # Doom One
  36. doom-one: &doom-one
  37. primary:
  38. background: "#282c34"
  39. foreground: "#bbc2cf"
  40. cursor:
  41. text: CellBackground
  42. cursor: "#528bff"
  43. selection:
  44. text: CellForeground
  45. background: "#3e4451"
  46. normal:
  47. black: "#1c1f24"
  48. red: "#ff6c6b"
  49. green: "#98be65"
  50. yellow: "#da8548"
  51. blue: "#51afef"
  52. magenta: "#c678dd"
  53. cyan: "#5699af"
  54. white: "#202328"
  55. bright:
  56. black: "#5b6268"
  57. red: "#da8548"
  58. green: "#4db5bd"
  59. yellow: "#ecbe7b"
  60. blue: "#3071db" # This is 2257a0 in Doom Emacs but I lightened it.
  61. magenta: "#a9a1e1"
  62. cyan: "#46d9ff"
  63. white: "#dfdfdf"
  64. # Dracula
  65. dracula: &dracula
  66. colors:
  67. primary:
  68. background: "#282a36"
  69. foreground: "#f8f8f2"
  70. cursor:
  71. text: CellBackground
  72. cursor: CellForeground
  73. vi_mode_cursor:
  74. text: CellBackground
  75. cursor: CellForeground
  76. search:
  77. matches:
  78. foreground: "#44475a"
  79. background: "#50fa7b"
  80. focused_match:
  81. foreground: "#44475a"
  82. background: "#ffb86c"
  83. bar:
  84. background: "#282a36"
  85. foreground: "#f8f8f2"
  86. line_indicator:
  87. foreground: None
  88. background: None
  89. selection:
  90. text: CellForeground
  91. background: "#44475a"
  92. normal:
  93. black: "#000000"
  94. red: "#ff5555"
  95. green: "#50fa7b"
  96. yellow: "#f1fa8c"
  97. blue: "#bd93f9"
  98. magenta: "#ff79c6"
  99. cyan: "#8be9fd"
  100. white: "#bfbfbf"
  101. bright:
  102. black: "#4d4d4d"
  103. red: "#ff6e67"
  104. green: "#5af78e"
  105. yellow: "#f4f99d"
  106. blue: "#caa9fa"
  107. magenta: "#ff92d0"
  108. cyan: "#9aedfe"
  109. white: "#e6e6e6"
  110. dim:
  111. black: "#14151b"
  112. red: "#ff2222"
  113. green: "#1ef956"
  114. yellow: "#ebf85b"
  115. blue: "#4d5b86"
  116. magenta: "#ff46b0"
  117. cyan: "#59dffc"
  118. white: "#e6e6d1"
  119. # Choose ONE color scheme from those available in the above list.
  120. #colors: *dracula
  121. # colors: *doom-one
  122. colors: *ayudark
  123. key_bindings:
  124. - { key: N, mods: Command, action: SpawnNewInstance }
  125. - { key: Space, mods: Alt, chars: " " }
  126. - { key: Back, mods: Super, chars: "\x15" } # delete word/line
  127. - { key: Left, mods: Alt, chars: "\x1bb" } # one word left
  128. - { key: Right, mods: Alt, chars: "\x1bf" } # one word right
  129. - { key: Left, mods: Command, chars: "\x1bOH", mode: AppCursor } # Home
  130. - { key: Right, mods: Command, chars: "\x1bOF", mode: AppCursor } # End
  131. - { key: R, mods: Command, chars: "\x1bR" }