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.

24 lines
460 B

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