Move nvim config into nvim/ subdirectory

Prepare repo structure for storing multiple dotfile configs.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Mikhail Kilin
2026-02-23 23:44:15 +03:00
parent 7213bec4dc
commit 50805a9042
15 changed files with 0 additions and 0 deletions

23
nvim/init.lua Normal file
View File

@@ -0,0 +1,23 @@
-- Bootstrap lazy.nvim
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",
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
-- Load core config before plugins
require("config.options")
require("config.keymaps")
require("config.autocmds")
-- Setup plugins
require("lazy").setup("plugins", {
change_detection = { notify = false },
})