seperate prefix for zen mappings and timeoutlen in settings
This commit is contained in:
parent
1f89919d27
commit
7f6cf1bc4b
|
@ -30,9 +30,9 @@ map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)
|
|||
map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt)
|
||||
|
||||
-- Truezen.nvim
|
||||
map("n", "<leader>z", ":TZAtaraxis<CR>", opt)
|
||||
map("n", "<leader>m", ":TZMinimalist<CR>", opt)
|
||||
map("n", "<leader>f", ":TZFocus<CR>", opt)
|
||||
map("n", "<leader>zz", ":TZAtaraxis<CR>", opt)
|
||||
map("n", "<leader>zm", ":TZMinimalist<CR>", opt)
|
||||
map("n", "<leader>zf", ":TZFocus<CR>", opt)
|
||||
|
||||
map("n", "<C-s>", ":w <CR>", opt)
|
||||
-- vim.cmd("inoremap jh <Esc>")
|
||||
|
|
|
@ -11,6 +11,7 @@ opt.mouse = "a"
|
|||
opt.signcolumn = "yes"
|
||||
opt.cmdheight = 1
|
||||
opt.updatetime = 250 -- update interval for gitsigns
|
||||
opt.timeoutlen = 200
|
||||
opt.clipboard = "unnamedplus"
|
||||
|
||||
-- Numbers
|
||||
|
|
Loading…
Reference in New Issue