moved plugins over
This commit is contained in:
parent
a22976111e
commit
16c8f8f1c1
15 changed files with 272 additions and 4 deletions
25
lua/custom/plugins/lualine.lua
Normal file
25
lua/custom/plugins/lualine.lua
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
local config = function()
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'rose-pine',
|
||||
component_separators = { '|', '|' },
|
||||
section_separators = { '', '' },
|
||||
disabled_filetypes = {},
|
||||
},
|
||||
tabline = {},
|
||||
sections = {
|
||||
lualine_a = { 'mode' },
|
||||
lualine_b = { 'branch', 'diff' },
|
||||
lualine_c = { 'filename' },
|
||||
lualine_x = { 'encoding', 'fileformat', 'filetype' },
|
||||
lualine_y = { 'progress' },
|
||||
lualine_z = { 'location' },
|
||||
},
|
||||
}
|
||||
end
|
||||
|
||||
return {
|
||||
'nvim-lualine/lualine.nvim',
|
||||
config = config,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue