seperate prefix for zen mappings and timeoutlen in settings

This commit is contained in:
ashincoder 2021-07-05 17:19:12 +05:30
parent 1f89919d27
commit 7f6cf1bc4b
2 changed files with 4 additions and 3 deletions

View File

@ -30,9 +30,9 @@ map("n", "<C-a>", [[ <Cmd> %y+<CR>]], opt)
map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt) map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt)
-- Truezen.nvim -- Truezen.nvim
map("n", "<leader>z", ":TZAtaraxis<CR>", opt) map("n", "<leader>zz", ":TZAtaraxis<CR>", opt)
map("n", "<leader>m", ":TZMinimalist<CR>", opt) map("n", "<leader>zm", ":TZMinimalist<CR>", opt)
map("n", "<leader>f", ":TZFocus<CR>", opt) map("n", "<leader>zf", ":TZFocus<CR>", opt)
map("n", "<C-s>", ":w <CR>", opt) map("n", "<C-s>", ":w <CR>", opt)
-- vim.cmd("inoremap jh <Esc>") -- vim.cmd("inoremap jh <Esc>")

View File

@ -11,6 +11,7 @@ opt.mouse = "a"
opt.signcolumn = "yes" opt.signcolumn = "yes"
opt.cmdheight = 1 opt.cmdheight = 1
opt.updatetime = 250 -- update interval for gitsigns opt.updatetime = 250 -- update interval for gitsigns
opt.timeoutlen = 200
opt.clipboard = "unnamedplus" opt.clipboard = "unnamedplus"
-- Numbers -- Numbers