604 current 2024-05-14 18:17:07 24.05.20240512.2057814 6.8.6-zen1 *

This commit is contained in:
zackartz 2024-05-14 18:17:11 -04:00
parent 24252cf89b
commit dfc24d96b3
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
2 changed files with 8 additions and 7 deletions

View file

@ -31,6 +31,14 @@ end
setup_all_servers() 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", "<left>", '<cmd>echo "Use h to move!!"<CR>') vim.keymap.set("n", "<left>", '<cmd>echo "Use h to move!!"<CR>')
vim.keymap.set("n", "<right>", '<cmd>echo "Use l to move!!"<CR>') vim.keymap.set("n", "<right>", '<cmd>echo "Use l to move!!"<CR>')
vim.keymap.set("n", "<up>", '<cmd>echo "Use k to move!!"<CR>') vim.keymap.set("n", "<up>", '<cmd>echo "Use k to move!!"<CR>')

View file

@ -3,13 +3,6 @@ return {
"rest-nvim/rest.nvim", "rest-nvim/rest.nvim",
ft = "http", ft = "http",
config = function() config = function()
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"
require("rest-nvim").setup() require("rest-nvim").setup()
end, end,