💄 style(nvim): indentation

This commit is contained in:
Sergio Laín 2023-11-03 11:31:31 +01:00
parent 72ca1c0dbc
commit 63668d056a
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -1,24 +1,26 @@
local macchiato = require("catppuccin.palettes").get_palette("macchiato")
return {
{
"akinsho/bufferline.nvim",
opts = {
highlights = require("catppuccin.groups.integrations.bufferline").get({
styles = { "italic", "bold" },
custom = {
all = {
fill = { bg = macchiato.mantle },
background = { bg = macchiato.mantle },
},
"akinsho/bufferline.nvim",
keys = {
{ "<leader>bH", "<cmd>BufferLineMovePrev<cr>", desc = "Move buffer prev" },
{ "<leader>bL", "<cmd>BufferLineMoveNext<cr>", desc = "Move buffer next" },
},
opts = {
highlights = require("catppuccin.groups.integrations.bufferline").get({
styles = { "italic", "bold" },
custom = {
all = {
fill = { bg = macchiato.mantle },
background = { bg = macchiato.mantle },
},
}),
options = {
buffer_close_icon = "",
modified_icon = "",
close_icon = "",
color_icons = true,
separator_style = "slope",
},
}),
options = {
buffer_close_icon = "",
modified_icon = "",
close_icon = "",
color_icons = true,
separator_style = "slope",
},
},
}