17 lines
281 B
Nix
17 lines
281 B
Nix
{ inputs, config, pkgs, ... }: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
vimAlias = true;
|
|
coc = {
|
|
enable = true;
|
|
settings = {
|
|
"diagnostic.checkCurrentLine" = true;
|
|
};
|
|
};
|
|
|
|
plugins = with pkgs.vimPlugins; [
|
|
vim-airline
|
|
];
|
|
};
|
|
}
|