No description
Find a file
2025-10-02 23:00:44 -07:00
plugins bumped flake; updated nvim-tree config 2025-09-30 16:34:41 -07:00
.gitignore first commit 2025-02-13 10:35:17 -08:00
autocmd.nix updated trailing whitepsace deletion 2025-04-14 11:35:06 -07:00
default.nix updated inputs 2025-09-30 21:46:03 -07:00
flake.lock bumped revs 2025-10-02 23:00:44 -07:00
flake.nix bumped revs 2025-10-02 23:00:44 -07:00
keymaps.nix refactored keybindings; added search and grep to nvim-tree 2025-02-14 16:54:21 -08:00
module.nix added ability to disable indent-blankline; nvim-tree updates 2025-09-30 16:13:47 -07:00
nixvim.nix bumped revs 2025-10-02 23:00:44 -07:00
options.nix bumped revs; added experimental lua loader; added option to disable treesitter 2025-08-20 12:32:55 -07:00
README.md * Refactored into separate files 2025-02-14 00:42:22 -08:00

nixvim-config

Installation

Add the following to the inputs section of your flake.nix:

inputs = {
  nixvim-config.url = "github:homefree/nixvim-config";
};

And add the following to the outputs:

outputs = { ... }@inputs: {
  nixosConfigurations = {
    <hostname> = inputs.nixpkgs.lib.nixosSystem {
      modules = [
        inputs.nixvim-config.nixosModules.default
        {
          nixvim-config.enable = true;
        }
      ];
    };
  };
}