summaryrefslogtreecommitdiffstats
path: root/lua/plugins/interface.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/interface.lua')
-rw-r--r--lua/plugins/interface.lua17
1 files changed, 10 insertions, 7 deletions
diff --git a/lua/plugins/interface.lua b/lua/plugins/interface.lua
index ab5cea3..ddc7b8e 100644
--- a/lua/plugins/interface.lua
+++ b/lua/plugins/interface.lua
@@ -15,10 +15,6 @@ return {
buffer_close_icon = ' ',
},
},
- config = function(_, opts)
- local highlights = require('rose-pine.plugins.bufferline')
- require('bufferline').setup(opts,{ highlights = highlights })
- end
},
{
'nvim-lualine/lualine.nvim',
@@ -46,8 +42,15 @@ return {
'BufReadPost',
'BufNewFile'
},
- config = function()
- require('gitsigns').setup()
- end,
+ opts = {
+ signs = {
+ add = { text = " ▎" },
+ change = { text = " ▎" },
+ delete = { text = " " },
+ topdelete = { text = " " },
+ changedelete = { text = " ▎" },
+ untracked = { text = " ▎" },
+ },
+ },
},
}