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

26 lines
662 B
Nix
Raw Normal View History

2022-11-28 00:21:18 +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";
offsets = [{ filetype = "NvimTree"; }];
};
};
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 })
'';
}