This commit is contained in:
Steve 2023-03-30 21:15:46 -04:00
commit 984dc04492
30 changed files with 2213 additions and 1 deletions

View file

@ -0,0 +1,17 @@
local M = {}
function M.setup()
local lualine = require 'lualine'
local conf = {
options = {
icons_enabled = true,
theme = 'dracula-nvim',
},
sections = {
lualine_x = {"aerial"},
}
}
lualine.setup(conf)
end
return M