Files
home-manager/modules/programs
Matthieu Coudron 47ad3655ec programs.neovim: expose generatedConfigViml (#2213)
Expose the generated viml config, this has 2 advantages:
1/ user can choose to write the generated config to a file of its choice
2/ the user can prepend/append to the config before writing it

    xdg.configFile."nvim/init.vim".text = ''
	" prepend some config
	${programs.neovim.generatedConfigViml}
	" append some config
    '';

NOTE: this was already possible with 
xdg.configFile."nvim/init.vim" = mkMerge [
  (mkBefore {
    text = ''
      " prepend some config
    '';
  })
  (mkAfter {
    text = ''
      " append some config
    '';
  })
]
2021-07-27 15:59:50 +02:00
..
2020-02-02 01:07:28 +01:00
2021-07-18 20:43:22 +02:00
2020-02-02 01:07:28 +01:00
2021-02-27 21:41:16 +01:00
2020-05-03 13:21:52 +02:00
2020-10-08 23:50:43 +02:00
2020-06-09 23:15:44 +02:00
2020-04-21 18:26:13 -04:00
2020-02-02 01:07:28 +01:00
2020-06-12 19:34:39 +02:00
2021-04-11 22:47:06 +02:00
2021-07-18 23:34:50 +02:00
2021-07-18 20:43:22 +02:00
2021-07-18 20:43:22 +02:00
2021-02-27 21:42:56 +01:00
2020-04-06 19:28:31 +02:00
2021-06-26 18:29:42 -04:00
2020-05-03 13:12:13 +02:00
2021-05-30 22:48:57 +02:00
2020-02-02 01:07:28 +01:00
2021-05-01 09:56:19 -06:00
2020-05-02 16:30:55 +02:00
2020-03-07 15:13:15 +01:00
2021-03-14 21:25:45 +01:00
2021-07-18 20:43:22 +02:00
2020-02-02 01:07:28 +01:00
2021-01-19 19:36:31 +01:00
2020-09-01 22:05:57 +02:00
2021-05-01 17:38:12 -04:00
2020-06-23 22:37:02 +02:00
2021-05-09 18:13:10 -04:00
2020-02-02 01:07:28 +01:00
2020-12-31 15:18:13 +01:00
2020-02-02 01:07:28 +01:00
2020-02-02 01:07:28 +01:00
2020-02-02 01:07:28 +01:00
2021-06-07 08:07:15 -06:00
2020-02-02 01:20:05 +01:00
2021-07-18 20:43:22 +02:00
2020-02-02 01:07:28 +01:00
2021-02-04 23:42:37 +01:00
2021-05-18 00:47:40 +02:00
2021-06-07 07:40:32 -06:00
2020-10-11 22:59:23 +02:00
2021-07-12 08:57:35 +02:00
2021-06-03 22:44:09 +02:00
2021-04-28 19:56:58 -04:00
2020-03-30 21:55:10 +02:00
2021-07-18 20:43:22 +02:00
2021-06-29 13:02:43 -06:00
2020-02-02 01:07:28 +01:00
2020-05-26 19:14:39 +02:00
2020-09-06 11:16:34 +02:00