add many plugins
This commit is contained in:
parent
e4260c415e
commit
7b821a02d3
11 changed files with 156 additions and 8 deletions
20
lua/custom/plugins/lualines.lua
Normal file
20
lua/custom/plugins/lualines.lua
Normal 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' },
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue