diff options
Diffstat (limited to 'lua/plugins/interface.lua')
| -rw-r--r-- | lua/plugins/interface.lua | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lua/plugins/interface.lua b/lua/plugins/interface.lua new file mode 100644 index 0000000..4e898c5 --- /dev/null +++ b/lua/plugins/interface.lua @@ -0,0 +1,44 @@ +return { + { + 'akinsho/bufferline.nvim', + event = 'VeryLazy', + dependencies = { + 'nvim-tree/nvim-web-devicons', + }, + opts = { + options = { + diagnostics = "nvim_lsp", + always_show_bufferline = false, + }, + }, + config = function(_, opts) + require("bufferline").setup(opts) + end, + }, + { + 'nvim-lualine/lualine.nvim', + event = 'VeryLazy', + opts = { + options = { + theme = 'onedark' + }, + }, + }, + { + 'lukas-reineke/indent-blankline.nvim', + event = { + 'BufReadPost', + 'BufNewFile' + }, + }, + { + 'lewis6991/gitsigns.nvim', + event = { + 'BufReadPost', + 'BufNewFile' + }, + config = function() + require('gitsigns').setup() + end, + }, +} |
