dotfiles/modules/common/neovim/config/bufferline.nix

27 lines
664 B
Nix
Raw Normal View History

2024-04-20 13:42:06 +00:00
{ pkgs, ... }:
{
2023-07-30 03:56:41 +00:00
# Shows buffers in a VSCode-style tab layout
2022-11-28 00:21:18 +00:00
plugins = [
pkgs.vimPlugins.bufferline-nvim
pkgs.vimPlugins.vim-bbye # Better closing of buffers
];
setup.bufferline = {
options = {
diagnostics = "nvim_lsp";
always_show_bufferline = false;
separator_style = "slant";
2024-04-20 13:42:06 +00:00
offsets = [ { filetype = "NvimTree"; } ];
2022-11-28 00:21:18 +00:00
};
};
lua = ''
-- Move buffers
vim.keymap.set("n", "L", ":BufferLineCycleNext<CR>", { silent = true })
vim.keymap.set("n", "H", ":BufferLineCyclePrev<CR>", { silent = true })
-- Kill buffer
vim.keymap.set("n", "<Leader>x", " :Bdelete<CR>", { silent = true })
'';
}