init.lua (517B)
1 require('config.options') -- Core configuration options. 2 require('config.keymaps') -- General key mappings. 3 require('config.snippets') -- Reusable code snippets. 4 require('config.projects') -- Project-specific code. 5 6 -- Machine-local keymaps (if they exist). 7 local local_keymaps_path = vim.fn.expand('~/.local/config/nvim/lua/config/keymaps.lua') 8 if vim.fn.filereadable(local_keymaps_path) == 1 then 9 dofile(local_keymaps_path) 10 end 11 12 require('config.lazy') -- Package manager.