Basic vim config

This commit is contained in:
Filippo Berto 2023-01-26 20:46:47 +01:00
parent a21281347a
commit 828c687eff
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 12 additions and 0 deletions

10
hm_modules/vim.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [ vim-airline vim-airline-themes ];
# settings = { ignorecase = true; };
# extraConfig = ''
# set mouse=a
# '';
};
}