minor refactoring

moved the lsp.signature to ui repo to be available for non-nvchad users too
This commit is contained in:
siduck
2024-06-27 09:28:14 +05:30
parent 61b336c030
commit 230b6c867e
8 changed files with 15 additions and 16 deletions
+2 -2
View File
@@ -55,7 +55,7 @@ g["loaded_perl_provider"] = 0
g["loaded_ruby_provider"] = 0
-- add binaries installed by mason.nvim to path
local is_windows = vim.fn.has("win32") ~= 0
local is_windows = vim.fn.has "win32" ~= 0
local sep = is_windows and "\\" or "/"
local delim = is_windows and ";" or ":"
vim.env.PATH = table.concat({vim.fn.stdpath "data", "mason", "bin"}, sep) .. delim .. vim.env.PATH
vim.env.PATH = table.concat({ vim.fn.stdpath "data", "mason", "bin" }, sep) .. delim .. vim.env.PATH