feat: more work, package nfnl
This commit is contained in:
parent
c7fc40674f
commit
c5310013ae
9 changed files with 118 additions and 28 deletions
5
dotfiles/.config/jj/config.toml
Normal file
5
dotfiles/.config/jj/config.toml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"$schema" = "https://jj-vcs.github.io/jj/latest/config-schema.json"
|
||||
|
||||
[user]
|
||||
name = "Kat Inskip"
|
||||
email = "kat@inskip.me"
|
||||
1
dotfiles/.config/nvim/.nfnl.fnl
Normal file
1
dotfiles/.config/nvim/.nfnl.fnl
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
11
dotfiles/.config/nvim/init.fnl
Normal file
11
dotfiles/.config/nvim/init.fnl
Normal 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)
|
||||
13
dotfiles/.config/nvim/init.lua
Normal file
13
dotfiles/.config/nvim/init.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue