ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • alacritty - themes세팅 찾음(utf-8설정
    러스트Rust로_만든프로그램_IDE_Terminal_warp 2023. 1. 22. 01:54
    728x90


    https://unpkg.com/browse/alacritty-themes@4.1.1/alacritty.yml

    UNPKG - alacritty-themes

    Version: 1.0.01.1.01.1.11.1.21.1.31.1.41.1.51.1.61.1.72.0.02.0.12.0.23.0.03.1.03.2.03.2.13.2.23.2.33.2.44.0.04.0.14.1.04.1.14.1.24.1.34.1.44.1.54.1.64.2.04.3.04.4.04.4.14.4.25.0.05.0.15.1.05.1.15.2.05.3.05.3.1

    unpkg.com


    env:
    7	  # TERM variable
    8	  #
    9	  # This value is used to set the `$TERM` environment variable for
    10	  # each instance of Alacritty. If it is not present, alacritty will
    11	  # check the local terminfo database and use `alacritty` if it is
    12	  # available, otherwise `xterm-256color` is used.
    13	  TERM: alacritty
    14	  LANG: "en_US.UTF-8"
    15	  LC_CTYPE: en_US.UTF-8
    16	










    WindowsOS_Rust개발자세팅Rust_054⭐️겁나게 빠른 터미널 소개해드립니다.Warp쓰고 싶은데 ...기다려야하니 일단 Alacritty쓰면서 기다리죠 #alacritty
    https://youtu.be/h-Vm-17qJ88



    내 alacritty.yml 세팅

    env:
      #TERM: alacritty
      TERM: xterm-256color
      LANG: "en_US.UTF-8"
      LC_CTYPE: en_US.UTF-8
    
    shell:
      program: C:\\Program Files\\PowerShell\\7\\pwsh.exe
      #args: --nologo
    
    
    window:
    
      opacity: 0.95
    
      dimensions:
        columns: 150
        lines: 34
    
      position:
        x: 100
        y: 45
    
    
    font:
      normal:
        family: MesloLGS NF
        style: Regular
    
      # Bold font face
      bold:
        family: MesloLGS NF
        style: Bold
    
      # Italic font face
      italic:
        family: MesloLGS NF
        style: Italic
    
      # Bold italic font face
      bold_italic:
        family: MesloLGS NF
        style: Bold Italic
    
      # Point size
      size: 16.0
    
    scrolling:
      # Maximum number of lines in the scrollback buffer.
      # Specifying '0' will disable scrolling.
      history: 10000
    
      # Scrolling distance multiplier.
      multiplier: 3
    
      # Use built-in font for box drawing characters.
      #
      # If `true`, Alacritty will use a custom built-in font for box drawing
      # characters (Unicode points 2500 - 259f).
      #
      builtin_box_drawing: true
    
    # If `true`, bold text is drawn using the bright color variants.
    draw_bold_text_with_bright_colors: true
    
    # Colors (Tomorrow Night)
    colors:
      # Default colors
      primary:
        background: '#1d1f21'
        foreground: '#c5c8c6'
    
        # Bright and dim foreground colors
        #
        # The dimmed foreground color is calculated automatically if it is not
        # present. If the bright foreground color is not set, or
        # `draw_bold_text_with_bright_colors` is `false`, the normal foreground
        # color will be used.
        dim_foreground: '#828482'
        bright_foreground: '#eaeaea'
    
      # Cursor colors
      #
      # Colors which should be used to draw the terminal cursor.
      #
      # Allowed values are CellForeground/CellBackground, which reference the
      # affected cell, or hexadecimal colors like #ff00ff.
      cursor:
        text: CellBackground
        cursor: CellForeground
    
      # Vi mode cursor colors
      #
      # Colors for the cursor when the vi mode is active.
      #
      # Allowed values are CellForeground/CellBackground, which reference the
      # affected cell, or hexadecimal colors like #ff00ff.
      vi_mode_cursor:
        text: CellBackground
        cursor: CellForeground
    
      # Search colors
      #
      # Colors used for the search bar and match highlighting.
      search:
        # Allowed values are CellForeground/CellBackground, which reference the
        # affected cell, or hexadecimal colors like #ff00ff.
        matches:
          foreground: '#000000'
          background: '#ffffff'
        focused_match:
          foreground: '#ffffff'
          background: '#000000'
    
      # Keyboard hints
      hints:
        # First character in the hint label
        #
        # Allowed values are CellForeground/CellBackground, which reference the
        # affected cell, or hexadecimal colors like #ff00ff.
        start:
          foreground: '#1d1f21'
          background: '#e9ff5e'
    
        # All characters after the first one in the hint label
        #
        # Allowed values are CellForeground/CellBackground, which reference the
        # affected cell, or hexadecimal colors like #ff00ff.
        end:
          foreground: '#e9ff5e'
          background: '#1d1f21'
    
      # Line indicator
      #
      # Color used for the indicator displaying the position in history during
      # search and vi mode.
      #
      # By default, these will use the opposing primary color.
      line_indicator:
        foreground: None
        background: None
    
      # Footer bar
      #
      # Color used for the footer bar on the bottom, used by search regex input,
      # hyperlink URI preview, etc.
      #
      footer_bar:
        background: '#c5c8c6'
        foreground: '#1d1f21'
    
      # Selection colors
      #
      # Colors which should be used to draw the selection area.
      #
      # Allowed values are CellForeground/CellBackground, which reference the
      # affected cell, or hexadecimal colors like #ff00ff.
      selection:
        text: CellBackground
        background: CellForeground
    
      # Normal colors
      normal:
        black:   '#1d1f21'
        red:     '#cc6666'
        green:   '#b5bd68'
        yellow:  '#f0c674'
        blue:    '#81a2be'
        magenta: '#b294bb'
        cyan:    '#8abeb7'
        white:   '#c5c8c6'
    
      # Bright colors
      bright:
        black:   '#666666'
        red:     '#d54e53'
        green:   '#b9ca4a'
        yellow:  '#e7c547'
        blue:    '#7aa6da'
        magenta: '#c397d8'
        cyan:    '#70c0b1'
        white:   '#eaeaea'
    
      # Dim colors
      #
      # If the dim colors are not set, they will be calculated automatically based
      # on the `normal` colors.
      dim:
        black:   '#131415'
        red:     '#864343'
        green:   '#777c44'
        yellow:  '#9e824c'
        blue:    '#556a7d'
        magenta: '#75617b'
        cyan:    '#5b7d78'
        white:   '#828482'
    
      # Indexed Colors
      #
      # The indexed colors include all colors from 16 to 256.































    반응형
Designed by Tistory.