fix: flatten nvim dir (remove submodule)

This commit is contained in:
luochen570
2026-05-24 10:08:07 +08:00
parent 2b8e08b9f3
commit a83624f0cc
14 changed files with 242 additions and 1 deletions

28
nvim/lua/plugins/init.lua Normal file
View File

@@ -0,0 +1,28 @@
return {
{
"stevearc/conform.nvim",
-- event = 'BufWritePre', -- uncomment for format on save
opts = require "configs.conform",
},
-- These are some examples, uncomment them if you want to see them work!
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
},
-- test new blink
-- { import = "nvchad.blink.lazyspec" },
-- {
-- "nvim-treesitter/nvim-treesitter",
-- opts = {
-- ensure_installed = {
-- "vim", "lua", "vimdoc",
-- "html", "css"
-- },
-- },
-- },
}