mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 11:54:57 -04:00
17 lines
299 B
Lua
17 lines
299 B
Lua
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
|