disabled hardtime

This commit is contained in:
venus
2026-04-14 15:06:25 -05:00
parent 528e601702
commit 3a85cfd58f

View File

@@ -66,11 +66,34 @@ require("config.lsp")
-- render bufferline -- render bufferline
require("bufferline").setup{} require("bufferline").setup{}
-- optimize keypresses -- optimize keypresses
require("hardtime").setup() -- require("hardtime").setup()
--fix notifications --fix notifications
vim.notify = require("notify") vim.notify = require("notify")
-- bind undotree -- jq setup
-- TODO fix the require file not found when in keybinds.lua 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.cmd("packadd nvim.undotree")
-- vim.keymap.set("n", "<leader>u", require("undotree").open) -- undotree -- vim.keymap.set("n", "<leader>u", require("undotree").open) -- undotree