Added nixvim
This commit is contained in:
parent
e9356e164c
commit
bf8b990a71
5 changed files with 329 additions and 9 deletions
20
nixos/nixvim/default.nix
Normal file
20
nixos/nixvim/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
imports = [
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
];
|
||||
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
colorschemes.catppuccin.enable = true;
|
||||
plugins = {
|
||||
|
||||
};
|
||||
opts = {
|
||||
number = true;
|
||||
shiftwidth = 4;
|
||||
relativenumber = false;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue