mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
Compare commits
No commits in common. "ef9b08a4621a07d9868804090f1e903299e51a53" and "4018f31087382878fac7c4af4aaa25bc7c1baafb" have entirely different histories.
ef9b08a462
...
4018f31087
1 changed files with 4 additions and 6 deletions
|
@ -10,11 +10,7 @@ in {
|
|||
enable = mkOption {
|
||||
type = bool;
|
||||
default = false;
|
||||
description = ''
|
||||
new-file-template.nvim: Automatically insert a template on new files in neovim.
|
||||
To add custom templates add a directory containing `lua/templates/*.lua` to `vim.additionalRuntimePaths`.
|
||||
More documentation on the templates available at https://github.com/otavioschwanck/new-file-template.nvim?tab=readme-ov-file#creating-new-templates
|
||||
'';
|
||||
description = "new-file-template.nvim: Automatically insert a template on new files in neovim. To add custom templates add a directory containing `lua/templates/*.lua` to `vim.additionalRuntimePaths`.";
|
||||
};
|
||||
|
||||
setupOpts = mkPluginSetupOption "nvim-file-template.nvim" {
|
||||
|
@ -40,7 +36,9 @@ in {
|
|||
type = attrsOf (listOf str);
|
||||
default = {};
|
||||
description = "Disable specific regexp for the default templates. Example: { ruby = [ \".*\" ]; }";
|
||||
example = "{ ruby = [\".*\"]; }";
|
||||
example = {
|
||||
ruby = [".*"];
|
||||
};
|
||||
};
|
||||
|
||||
suffixAsFiletype = mkOption {
|
||||
|
|
Loading…
Reference in a new issue