summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorjoe <rbo@gmx.us>2025-10-20 15:47:19 +0200
committerjoe <rbo@gmx.us>2025-10-20 15:47:19 +0200
commitd5e43d6609c5d23e2bb42ad8e91f4e362d7393f5 (patch)
treedff761e31518dd3757d25482204e8dbc894771b1 /.config
parentup (diff)
downloaddotfiles-bsd-d5e43d6609c5d23e2bb42ad8e91f4e362d7393f5.tar.gz
dotfiles-bsd-d5e43d6609c5d23e2bb42ad8e91f4e362d7393f5.tar.bz2
dotfiles-bsd-d5e43d6609c5d23e2bb42ad8e91f4e362d7393f5.tar.xz
dotfiles-bsd-d5e43d6609c5d23e2bb42ad8e91f4e362d7393f5.tar.zst
dotfiles-bsd-d5e43d6609c5d23e2bb42ad8e91f4e362d7393f5.zip
Diffstat (limited to '')
-rw-r--r--.config/dunst/dunstrc2
-rw-r--r--.config/nvim/lua/plugins/lspkind.lua8
2 files changed, 5 insertions, 5 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc
index cb1107a..627e0a5 100644
--- a/.config/dunst/dunstrc
+++ b/.config/dunst/dunstrc
@@ -27,7 +27,7 @@
sort = yes
idle_threshold = 0
- font = "Terminess Nerd Font 19"
+ font = "Terminess Nerd Font 16"
# font = "NotoSans Nerd Font 17"
line_height = 0
markup = full
diff --git a/.config/nvim/lua/plugins/lspkind.lua b/.config/nvim/lua/plugins/lspkind.lua
index e838f56..4326c76 100644
--- a/.config/nvim/lua/plugins/lspkind.lua
+++ b/.config/nvim/lua/plugins/lspkind.lua
@@ -95,14 +95,14 @@ return {
{ name = 'path' },
}),
window = {
- completion = cmp.config.window.bordered({
+ completion = {
border = 'none',
winhighlight = "Normal:CmpNormal,FloatBorder:CmpNormal,CursorLine:PmenuSel,Search:None",
- }),
- documentation = cmp.config.window.bordered({
+ },
+ documentation = {
border = 'none',
winhighlight = "Normal:CmpNormal,FloatBorder:CmpNormal,CursorLine:PmenuSel,Search:None",
- }),
+ },
},
})
end,