summaryrefslogtreecommitdiff
path: root/config/plugins/mini.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/plugins/mini.nix')
-rw-r--r--config/plugins/mini.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/config/plugins/mini.nix b/config/plugins/mini.nix
deleted file mode 100644
index 48bb0ed..0000000
--- a/config/plugins/mini.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- plugins.mini = {
- enable = true;
-
- modules = {
- comment = {};
- pairs = {};
- indentscope = {
- options.try_as_border = true;
- };
- };
- };
-
- autoCmd = [
- {
- event = ["FileType"];
- pattern = [
- "help"
- "neo-tree"
- "Trouble"
- "lazy"
- "mason"
- "notify"
- "toggleterm"
- ];
-
- callback = {
- __raw = ''
- function()
- vim.b.miniindentscope_disable = true
- end
- '';
- };
- }
- ];
-}