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

13 lines
189 B
Lua
Raw Normal View History

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