mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-14 13:03:49 +00:00
use nvim-navic in lualine instead of filename section (default)
This commit is contained in:
parent
735b2ed90b
commit
41776a4c5b
@ -10,6 +10,15 @@ return {
|
|||||||
section_separators = { left = '', right = '' },
|
section_separators = { left = '', right = '' },
|
||||||
component_separators = { left = '', right = '' },
|
component_separators = { left = '', right = '' },
|
||||||
},
|
},
|
||||||
|
-- Replace filename section with code context
|
||||||
|
sections = {
|
||||||
|
lualine_c = {
|
||||||
|
{
|
||||||
|
'navic',
|
||||||
|
color_correction = 'static',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -96,9 +96,6 @@ vim.opt.guicursor = 'n-v-i-c:block-Cursor'
|
|||||||
vim.o.laststatus = 3
|
vim.o.laststatus = 3
|
||||||
vim.api.nvim_set_hl(0, 'WinSeparator', { bg = nil })
|
vim.api.nvim_set_hl(0, 'WinSeparator', { bg = nil })
|
||||||
|
|
||||||
-- Set winbar to nvim-navic for code context
|
|
||||||
vim.o.winbar = "%{%v:lua.require'nvim-navic'.get_location()%}"
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd('UIEnter', {
|
vim.api.nvim_create_autocmd('UIEnter', {
|
||||||
group = vim.api.nvim_create_augroup('SetGUISettings', { clear = true }),
|
group = vim.api.nvim_create_augroup('SetGUISettings', { clear = true }),
|
||||||
callback = function()
|
callback = function()
|
||||||
|
Loading…
Reference in New Issue
Block a user