summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/config/lazy.lua13
-rw-r--r--.config/nvim/lua/config/settings.lua5
-rw-r--r--.config/nvim/lua/plugins/lualine.lua2
3 files changed, 17 insertions, 3 deletions
diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua
index 38168cd..f94ab01 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
},
@@ -109,7 +119,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 aac3187..a8e0851 100644
--- a/.config/nvim/lua/config/settings.lua
+++ b/.config/nvim/lua/config/settings.lua
@@ -109,3 +109,8 @@ vim.diagnostic.config({
update_in_insert = true,
severity_sort = true,
})
+
+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" })
diff --git a/.config/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua
index f6223c6..6dcdb8a 100644
--- a/.config/nvim/lua/plugins/lualine.lua
+++ b/.config/nvim/lua/plugins/lualine.lua
@@ -121,7 +121,7 @@ return {
show_modified_status = true,
icons_enabled = false,
symbols = {
- modified = '+', -- Text to show when the buffer is modified
+ modified = '[+]', -- Text to show when the buffer is modified
alternate_file = '', -- Text to show to identify the alternate file
},
buffers_color = {