mirror of
https://github.com/sadan4/nvim.git
synced 2024-11-16 14:24:39 -05:00
22 lines
456 B
Lua
22 lines
456 B
Lua
vim.g.mapleader = " "
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
vim.fn.system({
|
|
"git",
|
|
"clone",
|
|
"--filter=blob:none",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable", -- latest stable release
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
if vim.g.vscode then
|
|
require"vscodePlugins"
|
|
else
|
|
require"plugins"
|
|
require"setup"
|
|
require"keymap"
|
|
require"sets"
|
|
end
|