mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-29 04:14:55 -04:00
updates
This commit is contained in:
parent
05a7dcaebd
commit
984dc04492
30 changed files with 2213 additions and 1 deletions
17
nvim/lua/config/lualine.lua
Normal file
17
nvim/lua/config/lualine.lua
Normal 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
|
||||
Loading…
Reference in a new issue