add: nixvim bones; refactoring

This commit is contained in:
ooks-io 2024-02-02 17:07:36 +13:00
parent 546ece2d97
commit 885d9f952b
8 changed files with 232 additions and 33 deletions

View file

@ -8,6 +8,9 @@ in
{
imports = [
inputs.nixvim.homeManagerModules.nixvim
./settings.nix
./keymapping.nix
./plugins
];
config = lib.mkIf cfg.enable {
@ -18,26 +21,12 @@ in
programs.nixvim = {
enable = true;
options = {
number = true;
};
globals = {
mapleader = " ";
updatetime = 200;
timeoutlen = 400;
};
plugins = {
lualine = {
enable = true;
};
which-key = {
enable = true;
};
indent-blankline = {
enable = true;
keyLabels = {
" " = "<space>";
};
};
};