Autocommit 2023-07-25 11:07:37

This commit is contained in:
2023-12-25 11:07:37 +01:00
parent 309da905e9
commit ee6b24ebb6
13 changed files with 70 additions and 46 deletions

View File

@@ -1,8 +1,9 @@
function conf()
local function config()
--- Ensure plugins are avaiable
local lualine = require("lualine")
local lazy_status = require("lazy.status")
--- Plugin options
opts = {
options = {
theme = "onedark",
@@ -21,6 +22,7 @@ function conf()
},
}
--- Load plugin
lualine.setup(opts)
end
@@ -29,5 +31,5 @@ return {
dependencies = {
'nvim-tree/nvim-web-devicons', opt = true
},
config = conf
config = config
}