Skip to content

Instantly share code, notes, and snippets.

@rbtnn
Last active July 21, 2021 16:19
Show Gist options
  • Save rbtnn/41176651514d48178842f807ec8cac72 to your computer and use it in GitHub Desktop.
Save rbtnn/41176651514d48178842f807ec8cac72 to your computer and use it in GitHub Desktop.
airlineとかで見かける「>」の設定の仕方
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