From 3a85cfd58f30f79f2f2da2f86c261c92f58a9902 Mon Sep 17 00:00:00 2001 From: venus Date: Tue, 14 Apr 2026 15:06:25 -0500 Subject: [PATCH] disabled hardtime --- init.lua | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 3c3ed1e..0154a82 100644 --- a/init.lua +++ b/init.lua @@ -66,11 +66,34 @@ require("config.lsp") -- render bufferline require("bufferline").setup{} -- optimize keypresses -require("hardtime").setup() +-- require("hardtime").setup() --fix notifications vim.notify = require("notify") --- bind undotree --- TODO fix the require file not found when in keybinds.lua +-- jq setup +require("jq").setup() +-- require("jq").run({ +-- --- you can pass additional options to configure the current instance +-- -- if you want to toggle from the memory +-- toggle = true, +-- -- commands for the instance else it will use the default +-- -- the default command would be the first one in the table +-- commands = { +-- { +-- -- command to be run +-- command = "jq", +-- -- filetype of the output +-- filetype = "json", +-- -- hidden arguments that will not be shown in the ui +-- arguments = "-r" +-- }, +-- }, +-- -- arguments to start with in the ui +-- arguments = "", +-- -- query to start with, if not provided it will use the default +-- query = ".", +-- }) +-- -- bind undotree +-- -- TODO fix the require file not found when in keybinds.lua -- vim.cmd("packadd nvim.undotree") -- vim.keymap.set("n", "u", require("undotree").open) -- undotree