dotfiles/home/neovim.nix
2024-07-21 22:28:19 -07:00

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
];
};
}