diff options
| author | Nanderty <psopka@sopka.ch> | 2023-03-20 16:29:49 +0100 |
|---|---|---|
| committer | Nanderty <psopka@sopka.ch> | 2023-03-20 16:29:49 +0100 |
| commit | 7111388965e01e9c712dfc2288028952fe78b664 (patch) | |
| tree | 5f499fc0fbfc2122066b86d02987604146bd5e09 /lua/plugins/interface.lua | |
| parent | 423133102d96556d121a97689be1f4f6542e320c (diff) | |
| download | neovim-config-7111388965e01e9c712dfc2288028952fe78b664.tar.gz neovim-config-7111388965e01e9c712dfc2288028952fe78b664.tar.bz2 neovim-config-7111388965e01e9c712dfc2288028952fe78b664.zip | |
lazyvim
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, + }, +} |
