Обновления конфигов
This commit is contained in:
parent
e9a2f811b7
commit
49e5fa5710
20 changed files with 529 additions and 192 deletions
|
@ -1,7 +1,14 @@
|
|||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
local out = vim.fn.system({
|
||||
"git",
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"--branch=stable",
|
||||
lazyrepo,
|
||||
lazypath,
|
||||
})
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
|
@ -23,6 +30,7 @@ vim.cmd("filetype plugin indent on")
|
|||
require("options")
|
||||
require("plugins")
|
||||
require("keymaps")
|
||||
require("commands")
|
||||
require("autocommands")
|
||||
require("lsp")
|
||||
require("dap")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue