20 lines
269 B
Nix
20 lines
269 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.neovim = {
|
|
enable = true;
|
|
vimAlias = true;
|
|
|
|
extraConfig = ''
|
|
set nowrap
|
|
'';
|
|
|
|
plugins = with pkgs.vimPlugins; [
|
|
vim-nix
|
|
|
|
indentLine
|
|
indent-blankline-nvim
|
|
neoformat
|
|
];
|
|
};
|
|
}
|