End of config for now

This commit is contained in:
2023-12-30 18:35:52 +01:00
parent c6fc077654
commit 9d87a5985d
21 changed files with 490 additions and 131 deletions

View File

@@ -1,28 +1,28 @@
--- Ensure plugin is avaiable
local ok, lualine, lazy_status = pcall(function()
return require("lualine"), require("lazy.status")
return require("lualine"), require("lazy.status")
end)
if not ok then
return
return
end
--- Plugin options
opts = {
options = {
theme = "onedark",
},
sections = {
lualine_x = {
{
lazy_status.updates,
cond = lazy_status.has_updates,
color = { fg = "#ff9e64" },
},
{ "encoding" },
{ "fileformat" },
{ "filetype" },
},
},
local opts = {
options = {
theme = "onedark",
},
sections = {
lualine_x = {
{
lazy_status.updates,
cond = lazy_status.has_updates,
color = { fg = "#ff9e64" },
},
{ "encoding" },
{ "fileformat" },
{ "filetype" },
},
},
}
--- Load plugin