summaryrefslogtreecommitdiffstats
path: root/lua/plugins/interface.lua
diff options
context:
space:
mode:
authorNanderty <psopka@sopka.ch>2023-06-12 08:29:20 +0200
committerNanderty <psopka@sopka.ch>2023-06-12 08:29:20 +0200
commit52cd974b95bb59f6500426fe020a2983dc0d37eb (patch)
treec07b678734fb9827064990820a69c220f1fcdf82 /lua/plugins/interface.lua
parentcac321dd2ef6ca545fdca5545e26048ecff3dfa9 (diff)
downloadneovim-config-52cd974b95bb59f6500426fe020a2983dc0d37eb.tar.gz
neovim-config-52cd974b95bb59f6500426fe020a2983dc0d37eb.tar.bz2
neovim-config-52cd974b95bb59f6500426fe020a2983dc0d37eb.zip
Snippets und Verbesserungen
Diffstat (limited to 'lua/plugins/interface.lua')
-rw-r--r--lua/plugins/interface.lua30
1 files changed, 3 insertions, 27 deletions
diff --git a/lua/plugins/interface.lua b/lua/plugins/interface.lua
index f5009f6..c1164d1 100644
--- a/lua/plugins/interface.lua
+++ b/lua/plugins/interface.lua
@@ -1,5 +1,8 @@
return {
{
+ 'nvim-tree/nvim-web-devicons',
+ },
+ {
'nvim-lualine/lualine.nvim',
event = 'VeryLazy',
opts = {
@@ -51,31 +54,4 @@ return {
{ bg = require('monokai-pro.colorscheme').colors.editor.backgroundnil })
end,
},
- {
- 'lukas-reineke/indent-blankline.nvim',
- event = {
- 'BufReadPost',
- 'BufNewFile'
- },
- opts = {
- show_current_context = true,
- },
- },
- {
- 'lewis6991/gitsigns.nvim',
- event = {
- 'BufReadPost',
- 'BufNewFile'
- },
- opts = {
- signs = {
- add = { text = ' │' },
- change = { text = ' │' },
- delete = { text = ' │' },
- topdelete = { text = ' │' },
- changedelete = { text = ' │' },
- untracked = { text = ' │' },
- },
- },
- },
}