- Remove macOS/Windows clipboard branches, homebrew fzf path from .vimrc - Remove is_macos/is_windows logic from wezterm.lua - Drop scripts/nvim-offline-* and NVIM_OFFLINE plumbing from nvim config - Clean macOS section from .gitignore; simplify .gitattributes to LF-only - Trim README of offline-bundle section
35 lines
901 B
Lua
35 lines
901 B
Lua
-- Bootstrap lazy.nvim
|
|
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)
|
|
|
|
require('lazy').setup {
|
|
spec = {
|
|
{ import = 'brian.plugins' },
|
|
},
|
|
install = { colorscheme = { 'kanagawa' } },
|
|
checker = { enabled = true, notify = false },
|
|
change_detection = {
|
|
notify = false,
|
|
},
|
|
}
|
|
vim.keymap.set('n', '<leader>l', '<cmd>:Lazy<cr>', { desc = 'Plugin Manager' })
|