feat: introduce floating command window with history navigation

This commit is contained in:
2024-08-28 06:34:45 -04:00
parent 766bee3671
commit 6b43b810c3
2 changed files with 151 additions and 0 deletions
+13
View File
@@ -158,7 +158,20 @@ end
function M.setup()
M.eval_neovide()
M.define_commands()
-- Setup types data
require("data.types").setup()
-- ━━━━━━━━━━━━━━━━━━━━━━━━━ Rootiest cmd window ━━━━━━━━━━━━━━━━━━━━━━━━━
--
-- Setup Rootiest cmd window utility
require("utils.cmd_window").setup()
-- Setup Rootiest cmd window (override default command-line behavior)
-- require("utils.cmd_window").setup({ override_cmdline = true })
-- Setup indentor
require("utils.indentor")
end
return M