nix-configs/home-modules/vim.nix

22 lines
386 B
Nix
Raw Normal View History

2024-09-21 20:39:07 -04:00
{ pkgs, ... }:
2024-09-21 20:07:40 -04:00
{
programs.vim = {
enable = true;
defaultEditor = true;
2024-09-21 21:50:25 -04:00
plugins = builtins.attrValues {
inherit (pkgs.vimPlugins)
vim-sensible
vim-fugitive
vim-eunuch
vim-endwise
vim-lsp
vim-lsp-settings
nerdtree
nerdtree-git-plugin
vim-devicons
editorconfig-vim
;
};
2024-09-21 20:07:40 -04:00
};
}