feat: add tabline, filetree, autopairs

This commit is contained in:
Toth Alex 2023-09-28 11:14:48 +02:00
parent d891f4ac5a
commit 4b150dbc0d
7 changed files with 155 additions and 21 deletions

View file

@ -0,0 +1,33 @@
return {
"nvim-web-devicons",
config = function ()
require 'nvim-web-devicons'.setup {
override = {
zsh = {
icon = "",
color = "#428850",
cterm_color = "65",
name = "Zsh"
}
},
color_icons = true,
default = true,
strict = true,
override_by_filename = {
[".gitignore"] = {
icon = "",
color = "#f1502f",
name = "Gitignore"
}
},
override_by_extension = {
["log"] = {
icon = "",
color = "#81e043",
name = "Log"
}
},
}
end
}