Updated bufferline config

This commit is contained in:
2025-02-23 22:18:53 +11:00
parent 08fc1f5bf4
commit c829153547
4 changed files with 27 additions and 24 deletions

View File

@@ -11,8 +11,11 @@ return {
local mocha = require("catppuccin.palettes").get_palette("mocha")
bufferline.setup({
options = {
always_show_bufferline = false,
auto_toggle_bufferline = true,
always_show_bufferline = true,
numbers = function(opts)
return opts.raise(opts.ordinal)
end,
show_buffer_icons = false,
},
highlights = require("catppuccin.groups.integrations.bufferline").get({
styles = { "italic", "bold" },

View File

@@ -1,10 +1,10 @@
return {
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end
"kylechui/nvim-surround",
version = "*", -- Use for stability; omit to use `main` branch for the latest features
event = "VeryLazy",
config = function()
require("nvim-surround").setup({
-- Configuration here, or leave empty to use defaults
})
end,
}