diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-07-15 17:45:53 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-07-15 17:45:53 -0400 |
| commit | d3230ab29e56f97966f05cf2232a2e92d6a1302f (patch) | |
| tree | ed9f7ce3d0c376abd6402bb8b56876193222efe3 /nvim/lua/plugins/bufferline.lua | |
| parent | cd7a32285b864f1fa9c453b74111775103b20483 (diff) | |
simplified plugin setups to options
Diffstat (limited to 'nvim/lua/plugins/bufferline.lua')
| -rw-r--r-- | nvim/lua/plugins/bufferline.lua | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/nvim/lua/plugins/bufferline.lua b/nvim/lua/plugins/bufferline.lua index fce1b14..337ac4f 100644 --- a/nvim/lua/plugins/bufferline.lua +++ b/nvim/lua/plugins/bufferline.lua @@ -2,16 +2,14 @@ return { 'akinsho/bufferline.nvim', -- bufferline version = "v4.*", dependencies = 'nvim-tree/nvim-web-devicons', - config = function() - require('bufferline').setup({ - options = { - mode = "tabs", - show_tab_indicators = false, - hover = { - enabled = true, - delay = 200 - } + opts = { + options = { + mode = "tabs", + show_tab_indicators = false, + hover = { + enabled = true, + delay = 200 } - }) - end + } + } } |
