No description
Find a file
2025-02-16 15:55:31 -08:00
plugins added colored indent lines 2025-02-16 15:55:31 -08:00
.gitignore first commit 2025-02-13 10:35:17 -08:00
autocmd.nix * Refactored into separate files 2025-02-14 00:42:22 -08:00
default.nix * Refactored into separate files 2025-02-14 00:42:22 -08:00
flake.lock * Refactored into separate files 2025-02-14 00:42:22 -08:00
flake.nix * Refactored into separate files 2025-02-14 00:42:22 -08:00
keymaps.nix refactored keybindings; added search and grep to nvim-tree 2025-02-14 16:54:21 -08:00
module.nix added startify option 2025-02-16 14:22:27 -08:00
nixvim.nix * Refactored into separate files 2025-02-14 00:42:22 -08:00
options.nix refactored keybindings; added search and grep to nvim-tree 2025-02-14 16:54:21 -08: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;
        }
      ];
    };
  };
}