|
@@ -37,6 +37,7 @@ packer.startup({
|
|
|
opt = true
|
|
|
}
|
|
|
}
|
|
|
+ use('nvim-tree/nvim-web-devicons')
|
|
|
-- tokyonight 主题
|
|
|
use("folke/tokyonight.nvim")
|
|
|
-- nvim-tree 文件侧边栏
|
|
@@ -52,13 +53,15 @@ packer.startup({
|
|
|
-- dashboard-nvim vim 主页
|
|
|
use {
|
|
|
'glepnir/dashboard-nvim',
|
|
|
- event = 'VimEnter',
|
|
|
requires = {'nvim-tree/nvim-web-devicons'}
|
|
|
}
|
|
|
-- project
|
|
|
use("ahmedkhalf/project.nvim")
|
|
|
-- treesitter (新增)
|
|
|
-
|
|
|
+ use {
|
|
|
+ 'nvim-treesitter/nvim-treesitter',
|
|
|
+ run = ':TSUpdate'
|
|
|
+ }
|
|
|
end,
|
|
|
config = {
|
|
|
-- 并发数限制
|
|
@@ -66,8 +69,8 @@ packer.startup({
|
|
|
-- 自定义源
|
|
|
git = {
|
|
|
-- default_url_format = "https://hub.fastgit.xyz/%s",
|
|
|
- -- default_url_format = "https://mirror.ghproxy.com/https://github.com/%s",
|
|
|
- -- default_url_format = "https://gitcode.net/mirrors/%s",
|
|
|
+ -- default_url_format = "https://mirror.ghproxy.com/https://github.com/%s"
|
|
|
+ default_url_format = "https://gitcode.net/mirrors/%s"
|
|
|
-- default_url_format = "https://gitclone.com/github.com/%s",
|
|
|
},
|
|
|
display = {
|