1
Fork 0

Added some more git stuff I guess

This commit is contained in:
Matei Adriel 2022-08-24 14:13:35 +03:00
parent db117a39bb
commit 8594b5da11
9 changed files with 41 additions and 27 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -1,24 +1,24 @@
local M = {}
function M.setup()
require('lualine').setup({
theme = vim.g.lualineTheme,
options = {
section_separators = {left = '', right = ''},
component_separators = {left = '', right = ''}
},
sections = {
lualine_a = {'mode'},
lualine_b = {'branch', 'diff', 'diagnostics'},
lualine_c = {'filename'},
lualine_x = {},
-- lualine_y = {'encoding', 'fileformat', 'filetype'},
lualine_y = {'filetype'},
lualine_z = {'location'}
},
-- Integration with other plugins
extensions = {"nvim-tree"}
})
require('lualine').setup({
theme = vim.g.lualineTheme,
options = {
section_separators = { left = '', right = '' },
component_separators = { left = '', right = '' }
},
sections = {
lualine_a = { 'mode' },
lualine_b = { 'branch', 'diff', 'diagnostics' },
lualine_c = { 'filename' },
lualine_x = {},
-- lualine_y = {'encoding', 'fileformat', 'filetype'},
lualine_y = { 'filetype' },
lualine_z = { 'location' }
},
-- Integration with other plugins
extensions = { "nvim-tree" }
})
end
return M