mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
neovim: move bufferline highlight to its setup{}
This commit is contained in:
parent
a747daeacd
commit
7889449676
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
### :star2: Credits
|
### :star2: Credits
|
||||||
|
|
||||||
- [@glepnir](https://github.com/glepnir/nvim)'s Neovim config, and also [NvChad](https://github.com/siduck76/NvChad)
|
- [@glepnir](https://github.com/glepnir/nvim)'s Neovim config, and also [NvChad](https://github.com/NvChad/NvChad)
|
||||||
- [@novakane](https://git.sr.ht/~novakane/) for git aliases
|
- [@novakane](https://git.sr.ht/~novakane/) for git aliases
|
||||||
- [@hlissner](https://github.com/hlissner)'s zsh config
|
- [@hlissner](https://github.com/hlissner)'s zsh config
|
||||||
- [@daviwil](https://github.com/daviwil)'s/[@tecosaur](https://tecosaur.github.io/emacs-config/config.html)'s Emacs configurations
|
- [@daviwil](https://github.com/daviwil)'s/[@tecosaur](https://tecosaur.github.io/emacs-config/config.html)'s Emacs configurations
|
||||||
|
@ -308,10 +308,6 @@ local function highlight_plugins()
|
|||||||
hi('EftChar' , c.orange, '', 'bold,underline', '')
|
hi('EftChar' , c.orange, '', 'bold,underline', '')
|
||||||
hi('EftSubChar', c.grey3, '', 'bold,underline', '')
|
hi('EftSubChar', c.grey3, '', 'bold,underline', '')
|
||||||
|
|
||||||
-- BufferLine
|
|
||||||
hi('BufferLineIndicatorSelected', c.cyan, '', '', '')
|
|
||||||
hi('BufferLineFill', c.grey1, c.grey1, '', '')
|
|
||||||
|
|
||||||
-- Dashboard
|
-- Dashboard
|
||||||
hi('DashboardHeader' , c.cyan , '', 'bold' , '')
|
hi('DashboardHeader' , c.cyan , '', 'bold' , '')
|
||||||
hi('DashboardCenter' , c.blue , '', 'bold' , '')
|
hi('DashboardCenter' , c.blue , '', 'bold' , '')
|
||||||
|
@ -287,6 +287,10 @@ function M.bufferline_conf()
|
|||||||
{filetype = 'packer', text = 'Packer', text_align = 'left'}
|
{filetype = 'packer', text = 'Packer', text_align = 'left'}
|
||||||
},
|
},
|
||||||
separator_style = 'thin'
|
separator_style = 'thin'
|
||||||
|
},
|
||||||
|
highlights = {
|
||||||
|
fill = {guibg = {attribute = 'bg', highlight = 'TabLineFill'}},
|
||||||
|
indicator_selected = {guifg = {attribute = 'fg', highlight = 'TabLineSel'}}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user