LazyVim/init.lua

10 lines
280 B
Lua
Raw Normal View History

-- See `:h map-table` for map modes
-- See `:h stdpath` for paths
--
2023-09-01 19:07:29 +02:00
vim.g.python3_host_prog = vim.fn.stdpath("config")
.. "/"
.. vim.fn.findfile("python3", vim.fn.stdpath("config") .. "/.direnv/**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")