summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/nvim/lua/config/lazy.lua13
-rw-r--r--.config/nvim/lua/config/settings.lua2
-rw-r--r--.config/x11/xresources2
3 files changed, 14 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 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" })
diff --git a/.config/x11/xresources b/.config/x11/xresources
index 91a3b6f..af461d9 100644
--- a/.config/x11/xresources
+++ b/.config/x11/xresources
@@ -9,6 +9,6 @@ Xcursor.theme: "Simp1e-Gruvbox-Dark"
Xcursor.size: 18
Nsxiv.window.background: #1d2021
Nsxiv.window.foreground: #ebdbb2
-Nsxiv.bar.font: BlexMono Nerd Font-13
+Nsxiv.bar.font: BlexMono Nerd Font-10
Vncviewer.grabKeyboard: true
Vncviewer.FullScreen: 1