config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

nerd-icons-data-powerline.el (3018B)


      1 ;;; nerd-icons-data-powerline.el --- glyphset powerline -*- lexical-binding: t -*-
      2 
      3 ;; Copyright (C) 2023 Hongyu Ding <rainstormstudio@yahoo.com>
      4 
      5 ;; Author: Hongyu Ding <rainstormstudio@yahoo.com>
      6 ;; Keywords: lisp
      7 
      8 ;; This program is free software; you can redistribute it and/or modify
      9 ;; it under the terms of the GNU General Public License as published by
     10 ;; the Free Software Foundation, either version 3 of the License, or
     11 ;; (at your option) any later version.
     12 
     13 ;; This program is distributed in the hope that it will be useful,
     14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
     15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     16 ;; GNU General Public License for more details.
     17 
     18 ;; You should have received a copy of the GNU General Public License
     19 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
     20 
     21 ;;; Commentary:
     22 
     23 ;; powerline
     24 ;; from Nerd Font Version: 3.2.1
     25 
     26 ;;; Code:
     27 
     28 (defvar nerd-icons/powerline-alist
     29   '(
     30     ("nf-pl-branch" . "\xe0a0")
     31     ("nf-pl-current_line" . "\xe0a1")
     32     ("nf-pl-hostname" . "\xe0a2")
     33     ("nf-pl-left_hard_divider" . "\xe0b0")
     34     ("nf-pl-left_soft_divider" . "\xe0b1")
     35     ("nf-pl-line_number" . "\xe0a1")
     36     ("nf-pl-readonly" . "\xe0a2")
     37     ("nf-pl-right_hard_divider" . "\xe0b2")
     38     ("nf-pl-right_soft_divider" . "\xe0b3")
     39     ("nf-ple-backslash_separator" . "\xe0b9")
     40     ("nf-ple-backslash_separator_redundant" . "\xe0bf")
     41     ("nf-ple-column_number" . "\xe0a3")
     42     ("nf-ple-current_column" . "\xe0a3")
     43     ("nf-ple-flame_thick" . "\xe0c0")
     44     ("nf-ple-flame_thick_mirrored" . "\xe0c2")
     45     ("nf-ple-flame_thin" . "\xe0c1")
     46     ("nf-ple-flame_thin_mirrored" . "\xe0c3")
     47     ("nf-ple-forwardslash_separator" . "\xe0bb")
     48     ("nf-ple-forwardslash_separator_redundant" . "\xe0bd")
     49     ("nf-ple-honeycomb" . "\xe0cc")
     50     ("nf-ple-honeycomb_outline" . "\xe0cd")
     51     ("nf-ple-ice_waveform" . "\xe0c8")
     52     ("nf-ple-ice_waveform_mirrored" . "\xe0ca")
     53     ("nf-ple-left_half_circle_thick" . "\xe0b6")
     54     ("nf-ple-left_half_circle_thin" . "\xe0b7")
     55     ("nf-ple-left_hard_divider_inverse" . "\xe0d7")
     56     ("nf-ple-lego_block_facing" . "\xe0d0")
     57     ("nf-ple-lego_block_sideways" . "\xe0d1")
     58     ("nf-ple-lego_separator" . "\xe0ce")
     59     ("nf-ple-lego_separator_thin" . "\xe0cf")
     60     ("nf-ple-lower_left_triangle" . "\xe0b8")
     61     ("nf-ple-lower_right_triangle" . "\xe0ba")
     62     ("nf-ple-pixelated_squares_big" . "\xe0c6")
     63     ("nf-ple-pixelated_squares_big_mirrored" . "\xe0c7")
     64     ("nf-ple-pixelated_squares_small" . "\xe0c4")
     65     ("nf-ple-pixelated_squares_small_mirrored" . "\xe0c5")
     66     ("nf-ple-right_half_circle_thick" . "\xe0b4")
     67     ("nf-ple-right_half_circle_thin" . "\xe0b5")
     68     ("nf-ple-right_hard_divider_inverse" . "\xe0d6")
     69     ("nf-ple-trapezoid_top_bottom" . "\xe0d2")
     70     ("nf-ple-trapezoid_top_bottom_mirrored" . "\xe0d4")
     71     ("nf-ple-upper_left_triangle" . "\xe0bc")
     72     ("nf-ple-upper_right_triangle" . "\xe0be")
     73     ))
     74 
     75 (provide 'nerd-icons-data-powerline)
     76 ;;; nerd-icons-data-powerline.el ends here