add many plugins

This commit is contained in:
Guðmundur Bjarki Sigurðsson 2024-03-29 03:07:42 +00:00
parent e4260c415e
commit 7b821a02d3
11 changed files with 156 additions and 8 deletions

View file

@ -0,0 +1,20 @@
return {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
opts = {
options = { theme = 'gruvbox_dark' },
sections = {
lualine_a = { 'mode' },
lualine_b = { 'branch', 'diff', 'diagnostics' },
lualine_c = {
'filename',
function()
return vim.fn['nvim_treesitter#statusline'](180)
end,
},
lualine_x = { 'encoding', 'fileformat', 'filetype' },
lualine_y = { 'progress' },
lualine_z = { 'location' },
},
},
}