LazyVim/init.lua

16 lines
591 B
Lua
Raw Normal View History

-- See `:h map-table` for map modes
-- See `:h stdpath` for paths
2023-09-01 20:44:46 +02:00
-- Use Node from ASDF
-- TODO: Use neovim config
2024-03-26 18:11:52 +01:00
vim.env.PATH = vim.env.HOME .. "/.asdf/installs/nodejs/21.6.2/bin/" .. ":" .. vim.env.PATH
2023-09-01 20:44:46 +02:00
-- Use Python from neoovim "config" folder
local python_root = vim.fn.glob(vim.fn.stdpath("config") .. "/.direnv/python*", true, true)[1]
vim.env.VIRTUAL_ENV = python_root
vim.env.PATH = python_root .. "/bin" .. ":" .. vim.env.PATH
vim.g.python3_host_prog = vim.fn.findfile("python3", python_root .. "/**3")
2023-03-31 17:56:00 +02:00
2023-01-07 10:53:23 +01:00
-- bootstrap lazy.nvim, LazyVim and your plugins
2023-01-07 10:20:36 +01:00
require("config.lazy")