feat: add tabline, filetree, autopairs
This commit is contained in:
parent
d891f4ac5a
commit
4b150dbc0d
7 changed files with 155 additions and 21 deletions
33
lua/custom/plugins/devicons.lua
Normal file
33
lua/custom/plugins/devicons.lua
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue