Got a very rudimentary neovim config set up using lua

This commit is contained in:
vorboyvo 2024-01-15 15:36:10 -05:00
parent 144bbdf50a
commit 31b9d6838b
2 changed files with 4 additions and 0 deletions

View file

@ -3,4 +3,5 @@
defaultEditor = true;
viAlias = true;
vimAlias = true;
extraLuaConfig = builtins.readFile ./neovim/init.lua;
}

3
programs/neovim/init.lua Normal file
View file

@ -0,0 +1,3 @@
-- Options
--- ui
vim.opt.number = true