nvf: 0.7 changes

This commit is contained in:
ooks-io 2024-12-07 22:52:48 +11:00
parent 671da8f322
commit aaa88d49d7
3 changed files with 10 additions and 9 deletions

View file

@ -1,6 +1,7 @@
{
imports = [
./settings.nix
./opts.nix
./theme.nix
./keymaps.nix
./plugins

View file

@ -0,0 +1,9 @@
{
vim = {
options = {
tabstop = 2;
shiftwidth = 2;
autoindent = true;
};
};
}

View file

@ -1,9 +1,6 @@
{pkgs, ...}: {
vim = {
package = pkgs.neovim-unwrapped;
leaderKey = " ";
tabWidth = 2;
autoIndent = true;
searchCase = "smart";
enableLuaLoader = true;
enableEditorconfig = true;
@ -14,10 +11,4 @@
enable = false;
};
};
# Additional sets can be added here
# vim.luaConfigRC.basic =
# entryAfter ["entryAfter"] #lua
# ''
#
# '';
}