Compare commits
2
Commits
2424162450
...
271e15370c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
271e15370c
|
||
|
|
f1937680b5
|
@@ -55,10 +55,10 @@ Config.later(function()
|
|||||||
priority = 9999,
|
priority = 9999,
|
||||||
severity = { min = 'WARN', max = 'ERROR' },
|
severity = { min = 'WARN', max = 'ERROR' },
|
||||||
text = {
|
text = {
|
||||||
[vim.diagnostic.severity.ERROR] = ' ',
|
[vim.diagnostic.severity.ERROR] = '',
|
||||||
[vim.diagnostic.severity.WARN] = ' ',
|
[vim.diagnostic.severity.WARN] = '',
|
||||||
[vim.diagnostic.severity.INFO] = ' ',
|
[vim.diagnostic.severity.INFO] = '',
|
||||||
[vim.diagnostic.severity.HINT] = ' ',
|
[vim.diagnostic.severity.HINT] = '',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
underline = { severity = { min = 'HINT', max = 'ERROR' } },
|
underline = { severity = { min = 'HINT', max = 'ERROR' } },
|
||||||
@@ -71,11 +71,11 @@ Config.later(function()
|
|||||||
})
|
})
|
||||||
|
|
||||||
local dap_signs = {
|
local dap_signs = {
|
||||||
DapBreakpoint = { text = ' ', texthl = 'DapBreakpoint', linehl = '', numhl = '' },
|
DapBreakpoint = { text = '', texthl = 'DapBreakpoint', linehl = '', numhl = '' },
|
||||||
DapBreakpointCondition = { text = ' ', texthl = 'DapBreakpointCondition', linehl = '', numhl = '' },
|
DapBreakpointCondition = { text = '', texthl = 'DapBreakpointCondition', linehl = '', numhl = '' },
|
||||||
DapLogPoint = { text = ' ', texthl = 'DapLogPoint', linehl = '', numhl = '' },
|
DapLogPoint = { text = '', texthl = 'DapLogPoint', linehl = '', numhl = '' },
|
||||||
DapStopped = { text = ' ', texthl = 'DapStopped', linehl = 'DapStoppedLine', numhl = '' },
|
DapStopped = { text = '', texthl = 'DapStopped', linehl = 'DapStoppedLine', numhl = '' },
|
||||||
DapBreakpointRejected = { text = ' ', texthl = 'DapBreakpointRejected', linehl = '', numhl = '' },
|
DapBreakpointRejected = { text = '', texthl = 'DapBreakpointRejected', linehl = '', numhl = '' },
|
||||||
}
|
}
|
||||||
|
|
||||||
for name, sign in pairs(dap_signs) do
|
for name, sign in pairs(dap_signs) do
|
||||||
|
|||||||
@@ -10,9 +10,6 @@ Config.now(function()
|
|||||||
-- Statusline.
|
-- Statusline.
|
||||||
require('mini.statusline').setup()
|
require('mini.statusline').setup()
|
||||||
|
|
||||||
-- Statuscolumn.
|
|
||||||
require('mini.statuscolumn').setup()
|
|
||||||
|
|
||||||
-- Session management.
|
-- Session management.
|
||||||
require('mini.sessions').setup()
|
require('mini.sessions').setup()
|
||||||
end)
|
end)
|
||||||
|
|||||||
Reference in New Issue
Block a user