Last active
July 21, 2021 16:19
-
-
Save rbtnn/41176651514d48178842f807ec8cac72 to your computer and use it in GitHub Desktop.
airlineとかで見かける「>」の設定の仕方
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:airline_left_sep = nr2char(0xe0b0) " '' | |
let g:airline_left_alt_sep = nr2char(0xe0b1) " '' | |
let g:airline_right_sep = nr2char(0xe0b2) " '' | |
let g:airline_right_alt_sep = nr2char(0xe0b3) " '' | |
let g:lightline = { | |
\ 'separator': { 'left': nr2char(0xe0b0), 'right': nr2char(0xe0b2) }, | |
\ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment