nixos-config/home-manager/modules/neovim.nix

21 lines
347 B
Nix
Raw Normal View History

2022-01-26 19:45:40 +00:00
{ pkgs, ... }: {
2022-02-06 23:01:27 +00:00
programs.vim = {
enable = true;
2022-02-07 17:11:50 +00:00
plugins = with pkgs.vimPlugins; [
# Nice statusbar at the bottom
vim-airline
# Autoformatter for 'all' languages
neoformat
# Colorscheme
vim-monokai
];
2022-02-06 23:01:27 +00:00
settings = { ignorecase = true; };
extraConfig = ''
set mouse=a
'';
};
2022-01-26 19:45:40 +00:00
}