mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 11:54:57 -04:00
opensuse
This commit is contained in:
commit
e25cf3edec
34 changed files with 3718 additions and 0 deletions
17
.config/nvim/lua/config/lualine.lua
Normal file
17
.config/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