nordtheme / tmux

An arctic, north-bluish clean and elegant tmux color theme.
https://www.nordtheme.com/ports/tmux
MIT License
1.06k stars 140 forks source link

Nord tmux doesn't look as intended #69

Open ArjunSahlot opened 2 years ago

ArjunSahlot commented 2 years ago

I am running gnome-terminal on ubuntu with 24bit true color enabled. proof

I have also added this line to my .tmux.conf file: set-option -ga terminal-overrides ",xterm-256color:Tc"

Nord tmux still doesn't look as intended: proof

What should I do to make it look correct?

m-parchami commented 1 year ago

To all other newbies who're just like me looking for the solution to this, you have to install Powerline fonts so that you have the required fonts (that includes nice arrows and stuff). Checkout here. (and don't forget to open a new terminal for testing).

Screenshot from 2022-11-28 13-39-34

And for the color, go here, install the nord theme. Now go to your terminal preferences and on the left you should see Nord. Click on the arrow and set it as default :) Screenshot from 2022-11-28 13-47-36 Screenshot from 2022-11-28 13-48-33

brumik commented 3 months ago

@m-parchami I would like to ask if there is a solution to the non-pixel-perfectness of the patched version "arrows". I have it working perfectly on Mac, but on my gnome linux Alacritty (same config) it is a bit "off" that bothers me a little.

image

image

I do not even understand what can cause it and what to google, but I see that many people have it in their screenshots (but it seems that it is resolvable by some)

cstromquist commented 2 months ago

Any solutions to this @brumik ? I am having the same issues with the arrows.

brumik commented 2 months ago

I could not even figure out the cause, so unfortunately not, and this issue was not worth more than a few hours of research for me. If you figure it out please let me know.

brumik commented 2 months ago

@cstromquist I think I figured it out. This is an issue with my font Alacritty setup. I had:


font:
  normal:
    family: JetBrainsMono Nerd Font
    style: Regular
  bold:
    family: JetBrainsMono Nerd Font
    style: Bold
  italic:
    family: JetBrainsMono Nerd Font
    style: Italic
  bold_italic:
    family: JetBrainsMono Nerd Font
    style: Bold Italic

  # Point size
  size: 14.0

  # Offset is the extra space around each character. `offset.y` can be thought of
  # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
  offset:
    x: 1
    y: 1

where turns out the offset messes up "design" characters. If you set

  offset:
    x: 0
    y: 0

It looks good.