1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/lualine.lua
2022-02-23 16:44:33 +02:00

13 lines
189 B
Lua

local M = {}
function M.setup()
require('lualine').setup({
theme = "github",
-- Integration with other plugins
extensions = {"nvim-tree"}
})
end
return M