lsplines fix

This commit is contained in:
Christian Nieves
2023-11-05 22:11:41 -06:00
parent 9ddc25c39d
commit 6157a013dc
9 changed files with 78 additions and 87 deletions

View File

@ -0,0 +1,36 @@
return {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
config = function()
require("which-key").setup({})
-- local wk = require("which-key")
--
-- wk.register({ [";"] = { ":" } }, { mode = "v" })
-- wk.register({ [";"] = { ":" } }, { mode = "n" })
--
-- wk.register({
-- ["%%"] = { '<C-R>=fnameescape(expand("%:p:h")."/")<CR>', "Current File Directory" },
-- }, { mode = "c" })
--
-- wk.register({
-- ["jk"] = { "<esc>" },
-- ["J"] = { ":tabprevious<CR>" },
-- ["K"] = { ":tabnext<CR>" },
-- ["vv"] = { "<C-W>v" },
-- ["ss"] = { "<C-W>s" },
-- ["<space><space>"] = { ":w<CR>" },
-- })
--
-- wk.register({
-- t = {
-- name = "+tab",
-- t = { ":tabedit<Space>" },
-- d = { ":tabclose<CR>" },
-- },
-- })
end,
}