|
@@ -3,11 +3,59 @@
|
|
|
plugins.mini.enable = true;
|
|
plugins.mini.enable = true;
|
|
|
plugins.mini.modules = {
|
|
plugins.mini.modules = {
|
|
|
ai.n_lines = 500;
|
|
ai.n_lines = 500;
|
|
|
- surround = { };
|
|
|
|
|
|
|
+
|
|
|
|
|
+ starter = {
|
|
|
|
|
+ content_hooks = {
|
|
|
|
|
+ "__unkeyed-1.adding_bullet" = {
|
|
|
|
|
+ __raw = "require('mini.starter').gen_hook.adding_bullet()";
|
|
|
|
|
+ };
|
|
|
|
|
+ "__unkeyed-2.indexing" = {
|
|
|
|
|
+ __raw = "require('mini.starter').gen_hook.indexing('all', { 'Builtin actions' })";
|
|
|
|
|
+ };
|
|
|
|
|
+ "__unkeyed-3.padding" = {
|
|
|
|
|
+ __raw = "require('mini.starter').gen_hook.aligning('center', 'center')";
|
|
|
|
|
+ };
|
|
|
|
|
+ };
|
|
|
|
|
+ evaluate_single = true;
|
|
|
|
|
+ header = ''
|
|
|
|
|
+ ███╗ ██╗██╗██╗ ██╗██╗ ██╗██╗███╗ ███╗
|
|
|
|
|
+ ████╗ ██║██║╚██╗██╔╝██║ ██║██║████╗ ████║
|
|
|
|
|
+ ██╔██╗ ██║██║ ╚███╔╝ ██║ ██║██║██╔████╔██║
|
|
|
|
|
+ ██║╚██╗██║██║ ██╔██╗ ╚██╗ ██╔╝██║██║╚██╔╝██║
|
|
|
|
|
+ ██║ ╚████║██║██╔╝ ██╗ ╚████╔╝ ██║██║ ╚═╝ ██║
|
|
|
|
|
+ '';
|
|
|
|
|
+ items = {
|
|
|
|
|
+ "__unkeyed-1.buildtin_actions" = {
|
|
|
|
|
+ __raw = "require('mini.starter').sections.builtin_actions()";
|
|
|
|
|
+ };
|
|
|
|
|
+ "__unkeyed-2.recent_files_current_directory" = {
|
|
|
|
|
+ __raw = "require('mini.starter').sections.recent_files(10, false)";
|
|
|
|
|
+ };
|
|
|
|
|
+ "__unkeyed-3.recent_files" = {
|
|
|
|
|
+ __raw = "require('mini.starter').sections.recent_files(10, true)";
|
|
|
|
|
+ };
|
|
|
|
|
+ "__unkeyed-4.sessions" = {
|
|
|
|
|
+ __raw = "require('mini.starter').sections.sessions(5, true)";
|
|
|
|
|
+ };
|
|
|
|
|
+ };
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
statusline.section_location.__raw = ''
|
|
statusline.section_location.__raw = ''
|
|
|
function()
|
|
function()
|
|
|
return '%2l:%-2v'
|
|
return '%2l:%-2v'
|
|
|
end
|
|
end
|
|
|
'';
|
|
'';
|
|
|
|
|
+
|
|
|
|
|
+ surround = {
|
|
|
|
|
+ mappings = {
|
|
|
|
|
+ add = "gsa";
|
|
|
|
|
+ delete = "gsd";
|
|
|
|
|
+ find = "gsf";
|
|
|
|
|
+ find_left = "gsF";
|
|
|
|
|
+ highlight = "gsh";
|
|
|
|
|
+ replace = "gsr";
|
|
|
|
|
+ update_n_lines = "gsn";
|
|
|
|
|
+ };
|
|
|
|
|
+ };
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|