-
-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change tab close background #188
Comments
Unfortunately the default style of Vim is hardcoded to always draw a Vim's default tabline style with Nord colors. To learn how to configure the tabline, the Looking on your screenshots I guess you're using the lightline-vim or vim-airline plugin that both support Vim's
Both plugins also provide documentations like e.g. set showtabline=2
let g:lightline.tabline = {
\ 'left': [ [ 'tabs' ] ],
\ 'right': [ [ 'close'] ] } Tabline style provided by the lightline.vim plugin using the Nord color theme. In order to style the close button like on your first screenshot, the -let s:p.tabline.right = [ [ s:nord5, s:nord3 ] ]
+let s:p.tabline.right = [ [ s:nord1, s:nord8 ] ] Adjusted Nord lightline.vim color theme. One way to do this is to refactor Nord's lightline.vim color theme to allow users to customize and override the default styles like already proposed in #124 for the vim-airline plugin. |
Thanks for the infos 🙂 |
Should we expect this in release? |
Unlikely, since this is related to airline/lightline, and not to nord. |
Thank you for your patience! 🙏🏼 I recently published the first “Northern Post — The state and roadmap of Nord“ announcement which includes all details about the plans and future of the Nord project, including the goal of catching up with the backlog. This issue is part of the backlog and therefore I want to triage and process it to get one step closer to a “clean state“. Read the announcement about reaching the “clean“ contribution triage state in Nord‘s discussions for more details about the goal. Therefore it has been added with @maharjanaman In the meantime you can use the configuration from my previous post to use the style. |
Hi, is there a way to change tab close background to something like this;
Right now, its like this;
Sorry for the trouble.
The text was updated successfully, but these errors were encountered: