feat: more work, package nfnl

This commit is contained in:
Kat Inskip 2026-02-03 05:57:00 -08:00
parent c7fc40674f
commit c5310013ae
9 changed files with 118 additions and 28 deletions

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1,11 @@
(set vim.g.mapleader " ")
(set vim.g.maplocalleader ",")
(set vim.o.ignorecase true)
(set vim.o.smartcase true)
(set vim.o.splitright true)
(set vim.o.splitbelow true)
(set vim.o.foldenable false)
(set vim.o.undofile true)
(set vim.o.spell true)
(set vim.o.termguicolors true)
(set vim.o.exrc true)

View file

@ -0,0 +1,13 @@
-- [nfnl] init.fnl
vim.g.mapleader = " "
vim.g.maplocalleader = ","
vim.o.ignorecase = true
vim.o.smartcase = true
vim.o.splitright = true
vim.o.splitbelow = true
vim.o.foldenable = false
vim.o.undofile = true
vim.o.spell = true
vim.o.termguicolors = true
vim.o.exrc = true
return nil