migrated to lazy.nvim, cleanup and fixes
This commit is contained in:
39
init.lua
39
init.lua
@@ -5,30 +5,23 @@
|
||||
----------------------------------------
|
||||
|
||||
--
|
||||
-- Packer, a use-package like package manager
|
||||
-- bootstrap lazy.nvim, declarative package manager for neovim
|
||||
--
|
||||
|
||||
-- Bootstrap
|
||||
local fn = vim.fn
|
||||
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
|
||||
if fn.empty(fn.glob(install_path)) > 0 then
|
||||
Packer_bootstrap = fn.system({
|
||||
'git', 'clone', '--depth', '1',
|
||||
'https://github.com/wbthomason/packer.nvim',
|
||||
install_path
|
||||
})
|
||||
end
|
||||
|
||||
local packer = require 'packer'
|
||||
packer.reset()
|
||||
packer.init()
|
||||
local pk_use = packer.use
|
||||
|
||||
pk_use 'wbthomason/packer.nvim'
|
||||
|
||||
if Packer_bootstrap then
|
||||
packer.sync()
|
||||
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 })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
-- Leader key
|
||||
vim.g.mapleader = ' '
|
||||
@@ -37,7 +30,7 @@ vim.g.maplocalleader = ' '
|
||||
--
|
||||
-- Load other files
|
||||
--
|
||||
require 'ide' -- Tree Sitter Settings
|
||||
require 'lazy_conf'
|
||||
require 'ui' -- User Interface
|
||||
require 'defs' -- Default files/folders
|
||||
require 'binds' -- Keybindings and commands
|
||||
|
||||
Reference in New Issue
Block a user