diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2023-04-13 19:46:22 +0100 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2023-04-13 19:46:22 +0100 |
| commit | 862de4f10df81ff65c3edfc80007b24f20c59598 (patch) | |
| tree | e305b2af18b7fe0c122d93222a63017a58df1f01 /.config/nvim/after/plugin/xbufferline.lua | |
| parent | c5d4e4a23a397ae1dc68682734f2fe26d3adf0f0 (diff) | |
Futher configuration of nvim
Diffstat (limited to '.config/nvim/after/plugin/xbufferline.lua')
| -rw-r--r-- | .config/nvim/after/plugin/xbufferline.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/nvim/after/plugin/xbufferline.lua b/.config/nvim/after/plugin/xbufferline.lua new file mode 100644 index 0000000..3994b79 --- /dev/null +++ b/.config/nvim/after/plugin/xbufferline.lua @@ -0,0 +1,12 @@ +-- This file is intentionally call xbufferline.lua so that it loads last. +-- This is so we can get access to the loaded and configured nord color scheme. +local highlights = require("nord").bufferline.highlights() + +require("bufferline").setup({ + options = { + show_close_icon = false, + show_buffer_close_icons = false, + }, + highlights = highlights +}) + |
