init:dotfiles

This commit is contained in:
Dich
2025-05-28 20:40:21 +08:00
parent de050d50a6
commit 05707a142c
44 changed files with 9008 additions and 0 deletions

9
nvim/init.lua Normal file
View File

@ -0,0 +1,9 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
vim.api.nvim_create_autocmd("FileType", {
pattern = "markdown",
callback = function()
vim.opt_local.conceallevel = 0
end,
})