nixos-config/home-manager/modules/neovim.nix
2022-02-23 23:26:43 +01:00

21 lines
347 B
Nix

{ pkgs, ... }: {
programs.vim = {
enable = true;
plugins = with pkgs.vimPlugins; [
# Nice statusbar at the bottom
vim-airline
# Autoformatter for 'all' languages
neoformat
# Colorscheme
vim-monokai
];
settings = { ignorecase = true; };
extraConfig = ''
set mouse=a
'';
};
}