From 860e52b19d4ed59544d8495f044244cd9887aecd Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sun, 9 Mar 2025 21:18:22 +0300 Subject: [PATCH] [nvim] removed unused border variable --- nvim/lua/lsp-config.lua | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/nvim/lua/lsp-config.lua b/nvim/lua/lsp-config.lua index 2d6dbcf..f8dd48b 100644 --- a/nvim/lua/lsp-config.lua +++ b/nvim/lua/lsp-config.lua @@ -49,18 +49,6 @@ local on_attach = function(client, bufnr) end, bufopts) end --- Specify the border characters -local border = { - { '┌', 'FloatBorder' }, - { '─', 'FloatBorder' }, - { '┐', 'FloatBorder' }, - { '│', 'FloatBorder' }, - { '┘', 'FloatBorder' }, - { '─', 'FloatBorder' }, - { '└', 'FloatBorder' }, - { '│', 'FloatBorder' }, -} - -- Add the border on hover and on signature help popup window local handlers = { ['textDocument/hover'] = vim.lsp.with(vim.lsp.handlers.hover, { border = "rounded" }),