wezterm.lua 858 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. -- https://gogh-co.github.io/Gogh/
  2. local wezterm = require 'wezterm';
  3. return {
  4. default_prog = { '/usr/bin/fish', '-l' },
  5. font = wezterm.font_with_fallback {
  6. "Iosevka",
  7. "Noto Sans Symbols",
  8. "Unifont"
  9. },
  10. check_for_updates = false,
  11. use_fancy_tab_bar = false,
  12. tab_bar_at_bottom = true,
  13. window_background_opacity = 0.95,
  14. check_for_updates = false,
  15. color_scheme = 'BirdsOfParadise',
  16. colors={
  17. foreground = '#c9ad53',
  18. background = '#2a1f1d',
  19. cursor_fg = '#c9ad53',
  20. indexed = {
  21. [100] = '#364045',
  22. [108] = '#db9d3b',
  23. [101] = '#892b30',
  24. [102] = '#1c9867',
  25. [103] = '#db9d3b',
  26. [104] = '#db9d3b',
  27. [105] = '#892b30',
  28. [106] = '#317b9f',
  29. [107] = '#5d3636',
  30. [109] = '#892b30',
  31. [110] = '#1c9867',
  32. [111] = '#db9d3b',
  33. [112] = '#db9d3b',
  34. [113] = '#892b30',
  35. [114] = '#317b9f',
  36. [115] = '#5d3636'
  37. },
  38. }
  39. }