From b8ee9dcbf30cbe80f6a0594b36daad3bd58a0a9f Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Sun, 31 Aug 2025 21:15:48 +0100 Subject: [PATCH] Add wilder for nvim command line prompts --- base/.config/btop/btop.conf | 4 ++-- nvim/.config/nvim/lua/plugins/wilder.lua | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 nvim/.config/nvim/lua/plugins/wilder.lua diff --git a/base/.config/btop/btop.conf b/base/.config/btop/btop.conf index 334bc51..859629b 100644 --- a/base/.config/btop/btop.conf +++ b/base/.config/btop/btop.conf @@ -178,7 +178,7 @@ disk_free_priv = False show_io_stat = True #* Toggles io mode for disks, showing big graphs for disk read/write speeds. -io_mode = False +io_mode = True #* Set to True to show combined read/write io graphs in io mode. io_graph_combined = False @@ -209,4 +209,4 @@ selected_battery = "Auto" #* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. -log_level = "WARNING" +log_level = "WARNING" \ No newline at end of file diff --git a/nvim/.config/nvim/lua/plugins/wilder.lua b/nvim/.config/nvim/lua/plugins/wilder.lua new file mode 100644 index 0000000..c8eeefe --- /dev/null +++ b/nvim/.config/nvim/lua/plugins/wilder.lua @@ -0,0 +1,14 @@ +return { + { + 'gelguy/wilder.nvim', + config = function(_) + local wilder = require('wilder') + wilder.setup({modes = {':', '/', '?'}}) + wilder.python_search_pipeline({ + pattern = wilder.python_fuzzy_pattern({ + start_at_boundary = 0, + }), + }) + end + } +}