feat(theme): Use cattppuccin-mocha theme
This commit is contained in:
parent
9199070c13
commit
b5056a4fe8
6 changed files with 59 additions and 3 deletions
nvim/plugin
27
nvim/plugin/bufferline.lua
Normal file
27
nvim/plugin/bufferline.lua
Normal file
|
@ -0,0 +1,27 @@
|
|||
if not vim.g.did_load_catppuccin_plugin then
|
||||
require("bufferline").setup{}
|
||||
return
|
||||
end
|
||||
|
||||
if vim.g.did_load_bufferline_plugin then
|
||||
return
|
||||
end
|
||||
vim.g.did_load_bufferline_plugin = true
|
||||
|
||||
local mocha = require("catppuccin.palettes").get_palette "mocha"
|
||||
require("bufferline").setup {
|
||||
highlights = require("catppuccin.groups.integrations.bufferline").get {
|
||||
styles = { "italic", "bold" },
|
||||
custom = {
|
||||
all = {
|
||||
fill = { bg = "#000000" },
|
||||
},
|
||||
mocha = {
|
||||
background = { fg = mocha.text },
|
||||
},
|
||||
latte = {
|
||||
background = { fg = "#000000" },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue