starter/init.lua

9 lines
178 B
Lua
Raw Normal View History

2023-01-07 17:53:23 +08:00
-- bootstrap lazy.nvim, LazyVim and your plugins
2024-07-19 01:39:34 +08:00
if vim.g.vscode then
-- VSCode extension
2024-07-19 01:55:25 +08:00
require("code.test")
2024-07-19 01:39:34 +08:00
else
-- ordinary Neovim
require("config.lazy")
2025-02-21 10:34:21 +08:00
end