1 Star 0 Fork 0

45度的星空/vim配置

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
init.lua 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
45度的星空 提交于 2023-05-06 19:40 . fix the chinese font on goneovim
-- =============================================================
-- __ __ __ ___
-- | \/ |_ _ __ \ \ / (_)_ __ ___
-- | |\/| | | | | / _` \ \ / /| | '_ ` _ \
-- | | | | |_| | | (_| |\ 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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
VimL
1
https://gitee.com/degree45/vim_configuration.git
[email protected]:degree45/vim_configuration.git
degree45
vim_configuration
vim配置
master

搜索帮助