initial nixos-config

This commit is contained in:
2023-08-01 05:06:16 +00:00
parent 0a7012b316
commit 6cc6a1f32c
17 changed files with 366 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ config, pkgs, ...}:
{
home.sessionVariables.Editor = "nvim";
programs = {
neovim = {
enable = true;
extraConfig = ''
syntax enable
colorscheme gruvbox
set number relativenumber
highlight Comment cterm=italic gui=italic
hi Normal guibg=NONE ctermbg=NONE
'';
plugins = with pkgs.vimPlugins; [
vim-nix
gruvbox
];
};
};
}