From e9c0cb509213acc74afee9b9c7a2f1c3feb18c86 Mon Sep 17 00:00:00 2001 From: Greg Date: Wed, 16 Apr 2025 23:26:35 +0300 Subject: [PATCH] nvim --- .config/nvim/lua/plugins/blink.lua | 12 +++++++++++- .config/nvim/lua/plugins/luckluster.lua | 2 +- .config/nvim/lua/plugins/tokyonight.lua | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.config/nvim/lua/plugins/blink.lua b/.config/nvim/lua/plugins/blink.lua index 0ae997e..969e924 100644 --- a/.config/nvim/lua/plugins/blink.lua +++ b/.config/nvim/lua/plugins/blink.lua @@ -13,7 +13,17 @@ return { -- characters. -- trigger = { show_on_keyword = false }, -- Controls whether the documentation window will automatically show when selecting a completion item - documentation = { auto_show = true, auto_show_delay_ms = 500 }, + documentation = { + auto_show = true, + auto_show_delay_ms = 500, + window = { + border = "rounded", + }, + }, + menu = { + border = "rounded", + draw = { gap = 2 }, + }, }, sources = { -- add lazydev to your completion providers diff --git a/.config/nvim/lua/plugins/luckluster.lua b/.config/nvim/lua/plugins/luckluster.lua index 15af3c8..410566f 100644 --- a/.config/nvim/lua/plugins/luckluster.lua +++ b/.config/nvim/lua/plugins/luckluster.lua @@ -3,7 +3,7 @@ return { lazy = false, priority = 1000, init = function() - vim.cmd.colorscheme("lackluster") + -- vim.cmd.colorscheme("lackluster") -- vim.cmd.colorscheme("lackluster-hack") -- my favorite -- vim.cmd.colorscheme("lackluster-mint") end, diff --git a/.config/nvim/lua/plugins/tokyonight.lua b/.config/nvim/lua/plugins/tokyonight.lua index 9462b2c..f239fe6 100644 --- a/.config/nvim/lua/plugins/tokyonight.lua +++ b/.config/nvim/lua/plugins/tokyonight.lua @@ -5,9 +5,9 @@ return { -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - -- vim.cmd.colorscheme("tokyonight-storm") + vim.cmd.colorscheme("tokyonight-storm") -- You can configure highlights by doing something like: - -- vim.cmd.hi("Comment gui=none") + vim.cmd.hi("Comment gui=none") end, }