13 lines
285 B
Lua
13 lines
285 B
Lua
-- [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
|