From 0a45687bdfc6f0312c68209af248a2d69d589954 Mon Sep 17 00:00:00 2001 From: zackartz Date: Tue, 14 May 2024 18:27:38 -0400 Subject: [PATCH] 605 current 2024-05-14 18:27:34 24.05.20240512.2057814 6.8.6-zen1 * --- modules/home-manager/vim/config/init.lua | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/modules/home-manager/vim/config/init.lua b/modules/home-manager/vim/config/init.lua index 89eee8d..2fafdb7 100755 --- a/modules/home-manager/vim/config/init.lua +++ b/modules/home-manager/vim/config/init.lua @@ -2,6 +2,15 @@ local filetypes = require("core.filetypes") local configurer = require("utils.configurer") local opts = {} +package.path = package.path + .. ";" + .. "/nix/store/cga26ykqb57jyiws6wvrsmw9xrqf7555-lua5.1-lua-curl-0.3.13-1/share/lua/5.1/?.lua" + .. "/nix/store/cga26ykqb57jyiws6wvrsmw9xrqf7555-lua5.1-lua-curl-0.3.13-1/share/lua/5.1/?/?.lua" + +package.cpath = package.cpath + .. ";" + .. "/nix/store/cga26ykqb57jyiws6wvrsmw9xrqf7555-lua5.1-lua-curl-0.3.13-1/lib/lua/5.1/lcurl.so" + if vim.g.vscode then -- VSCode Neovim opts.spec = "vscode.plugins" @@ -31,14 +40,6 @@ end setup_all_servers() -package.path = package.path - .. ";" - .. "/nix/store/cga26ykqb57jyiws6wvrsmw9xrqf7555-lua5.1-lua-curl-0.3.13-1/share/lua/5.1/cURL.lua" - -package.cpath = package.cpath - .. ";" - .. "/nix/store/cga26ykqb57jyiws6wvrsmw9xrqf7555-lua5.1-lua-curl-0.3.13-1/lib/lua/5.1/lcurl.so" - vim.keymap.set("n", "", 'echo "Use h to move!!"') vim.keymap.set("n", "", 'echo "Use l to move!!"') vim.keymap.set("n", "", 'echo "Use k to move!!"')