diff options
| author | 2023-04-13 01:24:43 -0400 | |
|---|---|---|
| committer | 2023-04-13 01:24:43 -0400 | |
| commit | c9097ea9726aa55624583cb71e45e27a0a6d0af6 (patch) | |
| tree | c2ef3865de3b24bd26f54ea498d4ec10ed56b442 /dot_config/nvim/lua/plugins/mini/starter.lua | |
| parent | nvim: mini/starter: telescope instead of recents (diff) | |
mini: remove file_browser from starter telescope
Diffstat (limited to '')
| -rw-r--r-- | dot_config/nvim/lua/plugins/mini/starter.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dot_config/nvim/lua/plugins/mini/starter.lua b/dot_config/nvim/lua/plugins/mini/starter.lua new file mode 100644 index 0000000..ed2246d --- /dev/null +++ b/dot_config/nvim/lua/plugins/mini/starter.lua @@ -0,0 +1,15 @@ +local starter = require 'mini.starter' + +local function telescope() + local builtinf = starter.sections.telescope() + local builtin = builtinf() + table.remove(builtin, 1) + return function() return builtin end +end + +return { + items = { + telescope(), + starter.sections.builtin_actions(), + }, +} |
