代码拉取完成,页面将自动刷新
-- =============================================================
-- __ __ __ ___
-- | \/ |_ _ __ \ \ / (_)_ __ ___
-- | |\/| | | | | / _` \ \ / /| | '_ ` _ \
-- | | | | |_| | | (_| |\ V / | | | | | | |
-- |_| |_|\__, | \__, | \_/ |_|_| |_| |_|
-- |___/ |_|
--
-- =============================================================
-- 插件管理器
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)
require('config.config-base')
local plugins = require('plugins')
require('lazy').setup(plugins.plugins, plugins.opts)
if vim.fn.has('win32') ~= 1 then
require('config.fcitx-config')
end
require('config.dap.dap-config').setup()
if vim.fn.exists('g:gonvim_running') == 1 then
vim.opt.guifont = 'Maple Mono:h10'
vim.opt.guifontwide = 'Symbols Nerd Font:h10,Sarasa Fixed SC:h10'
elseif vim.fn.exists('g:neovide') == 1 then
if vim.fn.has('win32') == 1 then
vim.opt.guifont = 'Maple Mono,Sarasa Fixed SC,Symbols Nerd Font 2048-em:h10'
else
vim.opt.guifont = 'Maple Mono,Sarasa Fixed SC,Symbols Nerd Font:h10'
end
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。