Move dingbox to daniel and create progs dir

This commit is contained in:
2021-11-08 22:37:37 +00:00
parent fe8a32d7b6
commit 4ecc51c673
9 changed files with 11 additions and 86 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
plugins = with pkgs.vimPlugins; [
fugitive
nvim-treesitter
];
};
}