mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
* Neovim: Backup original LazyVim setup to .config/nvim.lazy.d * Neovim: Currently done with basic completions and LSP * Git: Always use ssh to connect github remote * Zsh: Add more antidots config
8 lines
209 B
Lua
8 lines
209 B
Lua
-- bootstrap lazy.nvim, LazyVim and your plugins
|
|
if (vim.g.vscode) then
|
|
print("VSCode detected, skipping lazy loading")
|
|
require("vscode.code")
|
|
else
|
|
require("config.lazy")
|
|
-- require("config.lazy")
|
|
end
|