Add vim config

This commit is contained in:
Leonora Tindall 2024-02-05 10:03:53 -06:00
parent f2d4d27a3d
commit 43bb15f179
2 changed files with 14 additions and 0 deletions

View File

@ -2,6 +2,9 @@
let inherit (lib) hm;
in
{
imports = [
./vim.nix
];
programs.git = {
enable = true;
userName = "Leonora Tindall";

11
vim.nix Normal file
View File

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
programs.vim = {
enable = true;
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
vim-nix
rust-vim
];
};
}