feat(nixvim): add nixvim
This commit is contained in:
parent
9c5b1f04dd
commit
a141198878
4 changed files with 158 additions and 2 deletions
24
users/modules/programs/nixvim.nix
Normal file
24
users/modules/programs/nixvim.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ inputs, ... }: {
|
||||
imports = [ inputs.nixvim.homeManagerModules.nixvim ];
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
vimdiffAlias = true;
|
||||
extraConfigLua = "";
|
||||
extraPlugins = [];
|
||||
|
||||
opts = {
|
||||
shiftwidth = 2;
|
||||
number = true;
|
||||
relativenumber = true;
|
||||
};
|
||||
|
||||
colorschemes = {
|
||||
catppuccin.enable = true;
|
||||
};
|
||||
|
||||
plugins = {
|
||||
lualine.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue