mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
Compare commits
2 commits
4018f31087
...
ef9b08a462
Author | SHA1 | Date | |
---|---|---|---|
|
ef9b08a462 | ||
|
5d219a0a7b |
1 changed files with 6 additions and 4 deletions
|
@ -10,7 +10,11 @@ in {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
type = bool;
|
type = bool;
|
||||||
default = false;
|
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`.";
|
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
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
setupOpts = mkPluginSetupOption "nvim-file-template.nvim" {
|
setupOpts = mkPluginSetupOption "nvim-file-template.nvim" {
|
||||||
|
@ -36,9 +40,7 @@ in {
|
||||||
type = attrsOf (listOf str);
|
type = attrsOf (listOf str);
|
||||||
default = {};
|
default = {};
|
||||||
description = "Disable specific regexp for the default templates. Example: { ruby = [ \".*\" ]; }";
|
description = "Disable specific regexp for the default templates. Example: { ruby = [ \".*\" ]; }";
|
||||||
example = {
|
example = "{ ruby = [\".*\"]; }";
|
||||||
ruby = [".*"];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
suffixAsFiletype = mkOption {
|
suffixAsFiletype = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue