-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
29 lines (23 loc) · 683 Bytes
/
init.lua
File metadata and controls
29 lines (23 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- Lara's Neovim configuration
---
--- Author: @lararosekelley
--- Last Modified: August 27th, 2025
-- ensure vim version is at least 0.9.0
if vim.fn.has("nvim-0.9.0") == 0 then
vim.api.nvim_echo({
{ "This Neovim configuration requires a version >= 0.9.0\n", "ErrorMsg" },
{ "Press any key to exit...", "MoreMsg" },
}, true, {})
vim.fn.getchar()
vim.cmd([[quit]])
return {}
end
-- enable experimental lua module loader
vim.loader.enable()
-- settings
require("config.providers")
require("config.options")
require("config.keymaps")
require("config.autocmds")
-- plugin manager (will automatically load plugins from `lua/plugins/*.lua`)
require("config.lazy")