summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/nvim/lua/config/lazy.lua13
-rw-r--r--.config/nvim/lua/config/settings.lua2
-rw-r--r--.config/x11/xresources2
-rwxr-xr-x.local/bin/kb2
-rwxr-xr-x.local/bin/setwp4
5 files changed, 17 insertions, 6 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
diff --git a/.local/bin/kb b/.local/bin/kb
index dd77f11..32cf2a2 100755
--- a/.local/bin/kb
+++ b/.local/bin/kb
@@ -57,7 +57,7 @@ config_keyboard() {
xmodmap -e 'keycode 23 = Escape'
xmodmap -e 'keycode 37 ='
fi
- herbe ' kb set' &
+ herbe 'kb set' &
}
config_keyboard
diff --git a/.local/bin/setwp b/.local/bin/setwp
index 647a332..fa0d255 100755
--- a/.local/bin/setwp
+++ b/.local/bin/setwp
@@ -95,8 +95,8 @@ sub main
if (@ARGV == 0 || (@ARGV != 0 && $ARGV[0] ne '-nw')) {
my $arg = fork();
if (not $arg) {
- exec('herbe', ' wp set') if ($ret == 0);
- exec('herbe', ' wp is not a valid file') if ($ret != 0);
+ exec('herbe', 'wp set') if ($ret == 0);
+ exec('herbe', 'wp is not a valid file') if ($ret != 0);
}
}
return;