From 5b4e49be0feef884e281de8e946957aa7902833c Mon Sep 17 00:00:00 2001 From: osbm Date: Wed, 18 Dec 2024 21:48:35 +0300 Subject: [PATCH] start using some plugins --- plugins/default.nix | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/plugins/default.nix b/plugins/default.nix index c946797..a50312e 100644 --- a/plugins/default.nix +++ b/plugins/default.nix @@ -1,29 +1,26 @@ { plugins = { - treesitter.enable = true; + treesitter = { + enable = true; + # folding = true; # i dont like the way it starts neovim with everything folded + }; + + mini = { + enable = true; + modules = { + starter = { + header = '' + _ _ + ___ ___| |__ _ __ ___ __| | _____ __ + / _ \/ __| '_ \| '_ ` _ \ / _` |/ _ \ \ / / + | (_) \__ \ |_) | | | | | || (_| | __/\ V / + \___/|___/_.__/|_| |_| |_(_)__,_|\___| \_/ + + ''; + }; + }; + }; + - # yazi = { - # enable = true; - # lazyLoad = { - # settings = { - # cmd = ["Yazi"]; - # }; - # }; - # }; - # mini = { - # enable = true; - # modules = { - # starter = { - # header = '' - # ██╗ ██╗██╗ ██╗ █████╗ ███╗ ██╗███████╗██╗ ██╗███╗ ██╗██╗██╗ ██╗ - # ██║ ██╔╝██║ ██║██╔══██╗████╗ ██║██╔════╝██║ ██║████╗ ██║██║╚██╗██╔╝ - # █████╔╝ ███████║███████║██╔██╗ ██║█████╗ ██║ ██║██╔██╗ ██║██║ ╚███╔╝ - # ██╔═██╗ ██╔══██║██╔══██║██║╚██╗██║██╔══╝ ██║ ██║██║╚██╗██║██║ ██╔██╗ - # ██║ ██╗██║ ██║██║ ██║██║ ╚████║███████╗███████╗██║██║ ╚████║██║██╔╝ ██╗ - # ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝╚══════╝╚═╝╚═╝ ╚═══╝╚═╝╚═╝ ╚═╝ - # ''; - # }; - # }; - # }; }; }