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
" Statusline & Tabline/Buffer line | |
" Dynamically getting the fg/bg colors from the current colorscheme, returns hex which is enough for me to use in Neovim | |
" Needs to figure out how to return cterm values too | |
let fgcolor=synIDattr(synIDtrans(hlID("Normal")), "fg", "gui") | |
let bgcolor=synIDattr(synIDtrans(hlID("Normal")), "bg", "gui") | |
" Tabline/Buffer line | |
set showtabline=2 | |
set tabline="%1T" |