summaryrefslogtreecommitdiffstats
path: root/lua/plugins/interface.lua
diff options
context:
space:
mode:
authorNanderty <psopka@sopka.ch>2023-03-21 19:22:45 +0100
committerNanderty <psopka@sopka.ch>2023-03-21 19:22:45 +0100
commit425f6135ec366b9c38b00c8936ad728dbf377714 (patch)
treebe0d634a80ddac7c1deb569a492ca3e8b63a6765 /lua/plugins/interface.lua
parent0cbfb1248476aa278c1567deeb4021e68703d7e2 (diff)
downloadneovim-config-425f6135ec366b9c38b00c8936ad728dbf377714.tar.gz
neovim-config-425f6135ec366b9c38b00c8936ad728dbf377714.tar.bz2
neovim-config-425f6135ec366b9c38b00c8936ad728dbf377714.zip
lazy all
Diffstat (limited to 'lua/plugins/interface.lua')
-rw-r--r--lua/plugins/interface.lua83
1 files changed, 45 insertions, 38 deletions
diff --git a/lua/plugins/interface.lua b/lua/plugins/interface.lua
index 6497d0a..f3d6e03 100644
--- a/lua/plugins/interface.lua
+++ b/lua/plugins/interface.lua
@@ -1,44 +1,51 @@
return {
- {
- 'akinsho/bufferline.nvim',
- event = 'VeryLazy',
- dependencies = {
- 'nvim-tree/nvim-web-devicons',
+ {
+ 'akinsho/bufferline.nvim',
+ event = {
+ 'BufReadPost',
+ 'BufNewFile'
+ },
+ dependencies = {
+ 'nvim-tree/nvim-web-devicons',
+ },
+ opts = {
+ options = {
+ diagnostics = "nvim_lsp",
+ always_show_bufferline = false,
+ },
+ },
+ config = function(_, opts)
+ require("bufferline").setup(opts)
+ end,
},
- opts = {
- options = {
- diagnostics = "nvim_lsp",
- always_show_bufferline = false,
- },
+ {
+ 'nvim-lualine/lualine.nvim',
+ event = 'VeryLazy',
+ opts = {
+ options = {
+ theme = 'auto'
+ },
+ },
},
- config = function(_, opts)
- require("bufferline").setup(opts)
- end,
- },
- {
- 'nvim-lualine/lualine.nvim',
- event = 'VeryLazy',
- opts = {
- options = {
- theme = 'auto'
- },
+ {
+ 'lukas-reineke/indent-blankline.nvim',
+ event = {
+ 'BufReadPost',
+ 'BufNewFile'
+ },
+ opts = {
+ show_current_context = true,
+ show_current_context_start = true,
+ },
},
- },
- {
- 'lukas-reineke/indent-blankline.nvim',
- event = {
- 'BufReadPost',
- 'BufNewFile'
+ {
+ 'lewis6991/gitsigns.nvim',
+ event = {
+ 'BufReadPost',
+ 'BufNewFile'
+ },
+ config = function()
+ require('gitsigns').setup()
+ end,
},
- },
- {
- 'lewis6991/gitsigns.nvim',
- event = {
- 'BufReadPost',
- 'BufNewFile'
- },
- config = function()
- require('gitsigns').setup()
- end,
- },
}