1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/lualine.lua

13 lines
199 B
Lua
Raw Normal View History

2022-02-23 15:44:33 +01:00
local M = {}
function M.setup()
require('lualine').setup({
2022-03-10 20:59:18 +01:00
theme = vim.g.lualineTheme,
2022-02-23 15:44:33 +01:00
-- Integration with other plugins
extensions = {"nvim-tree"}
})
end
return M