diff options
| -rw-r--r-- | .config/nvim/lua/config/lazy.lua | 12 | ||||
| -rw-r--r-- | .config/nvim/lua/config/settings.lua | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 38168cd..2e6ad0e 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -61,6 +61,16 @@ require('lazy').setup({ dependencies = { 'nvim-lua/plenary.nvim' }, config = function() require('todo-comments.config').setup{ + signs = false, + keywords = { + FIX = { icon = 'f:', }, + TODO = { icon = 't:', }, + HACK = { icon = 'h:', }, + WARN = { icon = 'w:', }, + PERF = { icon = 'p:', }, + NOTE = { icon = 'n:', }, + TEST = { icon = 't:', }, + }, highlight = { multiline = false, }, @@ -83,7 +93,7 @@ require('lazy').setup({ default_overlength = 80, grace_length = 1, highlight_to_eol = true, - disable_ft = { 'qf', 'help', 'man', 'checkhealth', 'lazy', 'packer', 'NvimTree', 'Telescope', 'WhichKey', 'text', 'csv', 'lua', 'gosum', 'sh', 'make', 'crontab', 'html', '' } + disable_ft = { 'qf', 'help', 'man', 'checkhealth', 'lazy', 'packer', 'NvimTree', 'Telescope', 'WhichKey', 'text', 'csv', 'lua', 'gosum', 'sh', 'make', 'crontab', 'html', 'trouble', '' } } end }, diff --git a/.config/nvim/lua/config/settings.lua b/.config/nvim/lua/config/settings.lua index 846ee47..a8e0851 100644 --- a/.config/nvim/lua/config/settings.lua +++ b/.config/nvim/lua/config/settings.lua @@ -112,3 +112,5 @@ vim.diagnostic.config({ vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#32302f" }) vim.api.nvim_set_hl(0, "LspFloatWinNormal", { bg = "#32302f" }) +vim.api.nvim_set_hl(0, "TroubleNormal", { bg = "#1d2021" }) +vim.api.nvim_set_hl(0, "TroubleNormalNC", { bg = "#1d2021" }) |
