-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
22 lines (18 loc) · 739 Bytes
/
init.lua
File metadata and controls
22 lines (18 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- INIT.LUA is the starting point for my Neovim config files
-- 2025-05-12 config, using Neovim r0.11.1 in Fedora 42
-- An exercise in simplification
-- Function > Form
-- Native > Plugin
-- I don't like the UserName folder. I use a simple, neat alternative...
-- ".lazy" (DOT LAZY) to remove the eponymous folder
-- When switching to Lua based config, the best advice I can offer is "RTFM"
-- https://neovim.io/doc/user/index.html
-- https://neovim.io/doc/user/lua.html
-- ":h" is your friend
-- Keymaps and Options loaded first to ensure leader-key is set early
require("settings.keymaps")
require("settings.options")
-- Require the Lazy.lua file to load plugins
require(".lazy")
-- Set colorscheme
vim.cmd("colorscheme kanso-ink")