diff options
| author | seth <[email protected]> | 2023-09-17 04:54:00 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-07 12:55:41 -0400 |
| commit | 9d0051e6b4170851ebcc09e7ff44097818c8e1dc (patch) | |
| tree | 067e1d6b745fc61aeb9b885439482f946bbdf2fe /plugins/bufferline.lua | |
| parent | e910460767dd835c7fb8aa7a59082e645c207cbd (diff) | |
start using willruggiano/neovim.nix
Diffstat (limited to 'plugins/bufferline.lua')
| -rw-r--r-- | plugins/bufferline.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/bufferline.lua b/plugins/bufferline.lua new file mode 100644 index 0000000..5ec89e5 --- /dev/null +++ b/plugins/bufferline.lua @@ -0,0 +1,20 @@ +return function() + require("bufferline").setup({ + options = { + always_show_bufferline = false, + highlights = require("catppuccin.groups.integrations.bufferline").get(), + diagnostics = "nvim_lsp", + mode = "buffers", + numbers = "ordinal", + separator_style = "slant", + offsets = { + { + filetype = "neo-tree", + text = "neo-tree", + highlight = "Directory", + text_align = "left", + }, + }, + }, + }) +end |
