605 current 2024-05-14 18:27:34 24.05.20240512.2057814 6.8.6-zen1 *

This commit is contained in:
zackartz 2024-05-14 18:27:38 -04:00
parent dfc24d96b3
commit 0a45687bdf
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA

View file

@ -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", "<left>", '<cmd>echo "Use h 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>')