I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
409 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { pkgs, ... }:
  3. {
  4. programs.neovim = {
  5. enable = true;
  6. viAlias = true;
  7. vimAlias = true;
  8. vimdiffAlias = true;
  9. extraConfig = ''
  10. set number relativenumber
  11. set nobackup
  12. '';
  13. extraPackages = [
  14. pkgs.nixfmt
  15. ];
  16. plugins = with pkgs.vimPlugins; [
  17. vim-nix
  18. vim-airline
  19. vim-polyglot
  20. ];
  21. };
  22. }