migrated to lazy.nvim, cleanup and fixes

This commit is contained in:
2025-03-25 23:13:50 +08:00
parent 93e008c735
commit 19bded245e
11 changed files with 366 additions and 371 deletions

View File

@@ -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