nix-configs/home-modules/vim.nix

20 lines
326 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;
plugins = with pkgs.vimPlugins; [
vim-sensible
vim-fugitive
vim-eunuch
vim-endwise
vim-lsp
vim-lsp-settings
nerdtree
nerdtree-git-plugin
vim-devicons
editorconfig-vim
];
};
}