1
0
Fork 0

Update diagnostic signs

This commit is contained in:
Daniel Kempkens 2021-12-19 00:10:10 +01:00
parent 86d90510f9
commit 15628a2ff0
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ end
-- Setup -- Setup
vim.cmd('sign define DiagnosticSignError text= texthl=DiagnosticSignError linehl= numhl=') vim.cmd('sign define DiagnosticSignError text= texthl=DiagnosticSignError linehl= numhl=')
vim.cmd('sign define DiagnosticSignWarn text= texthl=DiagnosticSignWarn linehl= numhl=') vim.cmd('sign define DiagnosticSignWarn text= texthl=DiagnosticSignWarn linehl= numhl=')
vim.cmd('sign define DiagnosticSignInfo text= texthl=DiagnosticSignInfo linehl= numhl=') vim.cmd('sign define DiagnosticSignInfo text= texthl=DiagnosticSignInfo linehl= numhl=')
vim.cmd('sign define DiagnosticSignHint text= texthl=DiagnosticSignHint linehl= numhl=') vim.cmd('sign define DiagnosticSignHint text= texthl=DiagnosticSignHint linehl= numhl=')

View file

@ -17,7 +17,7 @@ require('lualine').setup {
{ {
'diagnostics', 'diagnostics',
sources = {'nvim_diagnostic'}, sources = {'nvim_diagnostic'},
symbols = {error = ' ', warn = '', info = ' '} symbols = {error = ' ', warn = '', info = ' ', hint = ' '}
}, },
}, },
lualine_c = {ns.current_function}, lualine_c = {ns.current_function},