1
Fork 0

feat: lualine config and stuff

This commit is contained in:
Matei Adriel 2022-02-23 16:44:33 +02:00
parent c45475a62d
commit e7ab3b8f26
7 changed files with 54 additions and 9 deletions
dotfiles/neovim/lua/my/plugins

View file

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