diff options
Diffstat (limited to '.config/nvim/lua/config')
| -rw-r--r-- | .config/nvim/lua/config/lazy.lua | 14 | ||||
| -rw-r--r-- | .config/nvim/lua/config/settings.lua | 2 |
2 files changed, 14 insertions, 2 deletions
diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 38168cd..7c3bd3b 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -22,6 +22,7 @@ vim.g.mapleader = "\\" vim.g.maplocalleader = "\\" require('lazy').setup({ + ui = { icons = { cmd = "", config = "", debug = "", event = "", favorite = "", ft = "", init = "", import = "", keys = "", lazy = "", loaded = "", not_loaded = "", plugin = "", runtime = "", require = "", source = "", start = "", task = "", list = { "", "", "", "", }, }, }, spec = { { 'windwp/nvim-autopairs', @@ -61,6 +62,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 +94,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 }, @@ -109,7 +120,6 @@ require('lazy').setup({ }, { 'ibhagwan/fzf-lua', - dependencies = { 'nvim-tree/nvim-web-devicons' }, opts = { defaults = { file_icons = false, 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" }) |
