feat(nvim): add lsp status on lualine

This commit is contained in:
matt1432 2023-11-22 16:22:00 -05:00
parent 1fae0a73d3
commit 13e83c7dfd
2 changed files with 49 additions and 30 deletions
common/home/neovim/plugins

View file

@ -1,6 +1,9 @@
require('lualine').setup({
options = {
theme = 'dracula',
globalstatus = true
globalstatus = true,
},
sections = {
lualine_x = {'g:coc_status', 'bo:filetype'},
}
})