Browse Source

report time

scorpio 1 year ago
parent
commit
bc5674b640
4 changed files with 38 additions and 45 deletions
  1. 13 13
      lua/plugin-config/dashboard.lua
  2. 1 1
      lua/plugin-config/nvim-treesitter.lua
  3. 10 7
      lua/plugins.lua
  4. 14 24
      plugin/packer_compiled.lua

+ 13 - 13
lua/plugin-config/dashboard.lua

@@ -7,17 +7,17 @@ end
 db.setup({
     theme = 'doom',
     config = {
-        header = {[[]], [[]], [[]], [[]], [[]], [[]], [[]], [[]],
-                  [[          ▀████▀▄▄              ▄█ ]],
-                  [[            █▀    ▀▀▄▄▄▄▄    ▄▄▀▀█ ]],
-                  [[    ▄        █          ▀▀▀▀▄  ▄▀  ]],
-                  [[   ▄▀ ▀▄      ▀▄              ▀▄▀  ]],
-                  [[  ▄▀    █     █▀   ▄█▀▄      ▄█    ]],
-                  [[  ▀▄     ▀▄  █     ▀██▀     ██▄█   ]],
-                  [[   ▀▄    ▄▀ █   ▄██▄   ▄  ▄  ▀▀ █  ]],
-                  [[    █  ▄▀  █    ▀██▀    ▀▀ ▀▀  ▄▀  ]],
-                  [[   █   █  █      ▄▄           ▄▀   ]], [[]], [[]], [[]], [[]], [[]], [[]], [[]], [[]]}, -- your header
-        center = {{
+        header = { [[]], [[]], [[]], [[]], [[]], [[]], [[]], [[]],
+            [[          ▀████▀▄▄              ▄█ ]],
+            [[            █▀    ▀▀▄▄▄▄▄    ▄▄▀▀█ ]],
+            [[    ▄        █          ▀▀▀▀▄  ▄▀  ]],
+            [[   ▄▀ ▀▄      ▀▄              ▀▄▀  ]],
+            [[  ▄▀    █     █▀   ▄█▀▄      ▄█    ]],
+            [[  ▀▄     ▀▄  █     ▀██▀     ██▄█   ]],
+            [[   ▀▄    ▄▀ █   ▄██▄   ▄  ▄  ▀▀ █  ]],
+            [[    █  ▄▀  █    ▀██▀    ▀▀ ▀▀  ▄▀  ]],
+            [[   █   █  █      ▄▄           ▄▀   ]], [[]], [[]], [[]], [[]], [[]], [[]], [[]], [[]] }, -- your header
+        center = { {
             icon = ' ',
             icon_hl = 'Title',
             desc = 'Find File           ',
@@ -44,13 +44,13 @@ db.setup({
             key = 'u',
             keymap = 'SPC u',
             action = 'lua print(4)'
-        }},
+        } },
         footer = db.custom_footer -- your footer
     }
 })
 
 db.custom_footer = function()
-    local footer = {'', '🎉 Have fun with neovim'}
+    local footer = { '', '🎉 Have fun with neovim' }
     if packer_plugins ~= nil then
         local count = #vim.tbl_keys(packer_plugins)
         footer[2] = '🎉 Neovim loaded ' .. count .. ' plugins'

+ 1 - 1
lua/plugin-config/nvim-treesitter.lua

@@ -7,7 +7,7 @@ end
 treesitter.setup({
     -- 安装 language parser
     -- :TSInstallInfo 命令查看支持的语言
-    ensure_installed = {"json", "html", "css", "vim", "lua", "javascript", "typescript", "tsx"},
+    ensure_installed = { "json", "html", "css", "vim", "lua", "javascript", "typescript", "tsx", "python", "scss", "vue" },
     -- 启用代码高亮模块
     highlight = {
         enable = true,

+ 10 - 7
lua/plugins.lua

@@ -6,9 +6,9 @@ local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
 local paccker_bootstrap
 if fn.empty(fn.glob(install_path)) > 0 then
     vim.notify("正在安装Pakcer.nvim,请稍后...")
-    paccker_bootstrap = fn.system({"git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim",
-    -- "https://gitcode.net/mirrors/wbthomason/packer.nvim",
-                                   install_path})
+    paccker_bootstrap = fn.system({ "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim",
+        -- "https://gitcode.net/mirrors/wbthomason/packer.nvim",
+        install_path })
 
     -- https://github.com/wbthomason/packer.nvim/issues/750
     local rtp_addition = vim.fn.stdpath("data") .. "/site/pack/*/start/*"
@@ -48,12 +48,12 @@ packer.startup({
         -- 文件搜索
         use {
             'nvim-telescope/telescope.nvim',
-            requires = {"nvim-lua/plenary.nvim"}
+            requires = { "nvim-lua/plenary.nvim" }
         }
         -- dashboard-nvim  vim 主页
         use {
             'glepnir/dashboard-nvim',
-            requires = {'nvim-tree/nvim-web-devicons'}
+            requires = { 'nvim-tree/nvim-web-devicons' }
         }
         -- project
         use("ahmedkhalf/project.nvim")
@@ -62,6 +62,10 @@ packer.startup({
             'nvim-treesitter/nvim-treesitter',
             run = ':TSUpdate'
         }
+        --------------------- LSP --------------------
+        use("williamboman/nvim-lsp-installer")
+        -- Lspconfig
+        use({ "neovim/nvim-lspconfig" })
     end,
     config = {
         -- 并发数限制
@@ -70,7 +74,7 @@ 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://gitcode.net/mirrors/%s"
             -- default_url_format = "https://gitclone.com/github.com/%s",
         },
         display = {
@@ -90,4 +94,3 @@ pcall(vim.cmd, [[
     autocmd BufWritePost plugins.lua source <afile> | PackerSync
     augroup end
   ]])
-

+ 14 - 24
plugin/packer_compiled.lua

@@ -75,68 +75,58 @@ time([[try_loadstring definition]], false)
 time([[Defining packer_plugins]], true)
 _G.packer_plugins = {
   ["dashboard-nvim"] = {
-    loaded = false,
-    needs_bufread = false,
-    only_cond = false,
-    path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/opt/dashboard-nvim",
-    url = "https://github.com/glepnir/dashboard-nvim"
+    loaded = true,
+    path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/dashboard-nvim",
+    url = "https://gitcode.net/mirrors/glepnir/dashboard-nvim"
   },
   ["lualine.nvim"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/lualine.nvim",
-    url = "https://github.com/nvim-lualine/lualine.nvim"
+    url = "https://gitcode.net/mirrors/nvim-lualine/lualine.nvim"
   },
   ["nvim-tree.lua"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-tree.lua",
-    url = "https://github.com/kyazdani42/nvim-tree.lua"
+    url = "https://gitcode.net/mirrors/kyazdani42/nvim-tree.lua"
   },
   ["nvim-treesitter"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
-    url = "https://github.com/nvim-treesitter/nvim-treesitter"
+    url = "https://gitcode.net/mirrors/nvim-treesitter/nvim-treesitter"
   },
   ["nvim-web-devicons"] = {
-    loaded = false,
-    needs_bufread = false,
-    path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/opt/nvim-web-devicons",
-    url = "https://github.com/nvim-tree/nvim-web-devicons"
+    loaded = true,
+    path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
+    url = "https://gitcode.net/mirrors/nvim-tree/nvim-web-devicons"
   },
   ["packer.nvim"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/packer.nvim",
-    url = "https://github.com/wbthomason/packer.nvim"
+    url = "https://gitcode.net/mirrors/wbthomason/packer.nvim"
   },
   ["plenary.nvim"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/plenary.nvim",
-    url = "https://github.com/nvim-lua/plenary.nvim"
+    url = "https://gitcode.net/mirrors/nvim-lua/plenary.nvim"
   },
   ["project.nvim"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/project.nvim",
-    url = "https://github.com/ahmedkhalf/project.nvim"
+    url = "https://gitcode.net/mirrors/ahmedkhalf/project.nvim"
   },
   ["telescope.nvim"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/telescope.nvim",
-    url = "https://github.com/nvim-telescope/telescope.nvim"
+    url = "https://gitcode.net/mirrors/nvim-telescope/telescope.nvim"
   },
   ["tokyonight.nvim"] = {
     loaded = true,
     path = "/Users/sdaduanbilei/.local/share/nvim/site/pack/packer/start/tokyonight.nvim",
-    url = "https://github.com/folke/tokyonight.nvim"
+    url = "https://gitcode.net/mirrors/folke/tokyonight.nvim"
   }
 }
 
 time([[Defining packer_plugins]], false)
-vim.cmd [[augroup packer_load_aucmds]]
-vim.cmd [[au!]]
-  -- Event lazy-loads
-time([[Defining lazy-load event autocommands]], true)
-vim.cmd [[au VimEnter * ++once lua require("packer.load")({'dashboard-nvim'}, { event = "VimEnter *" }, _G.packer_plugins)]]
-time([[Defining lazy-load event autocommands]], false)
-vim.cmd("augroup END")
 
 _G._packer.inside_compile = false
 if _G._packer.needs_bufread == true then