{ ... }: { programs.nixvim = { keymaps = [ { mode = [ "n" ]; key = ""; action = ":BufferLineCyclePrev"; options = { noremap = true; silent = true; }; } { mode = [ "n" ]; key = ""; action = ":BufferLineCycleNex"; options = { noremap = true; silent = true; }; } { mode = [ "n" ]; key = ""; action = ":bdelete!"; options = { noremap = true; silent = true; }; } ]; plugins.bufferline = { enable = true; # extraOptions = { settings = { options = { tabpages = true; sidebar_filetypes = { NvimTree = true; }; diagnostics = "nvim_lsp"; always_show_bufferline = true; }; highlights = { buffer_selected = { # fg = "#ffffff"; bold = true; }; }; }; }; }; }