mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-13 19:04:40 +02:00
make timeoutlen configurable
This commit is contained in:
parent
c486fd1175
commit
e93dbcf7ae
3 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,7 @@ O = {
|
||||||
number = true,
|
number = true,
|
||||||
relative_number = true,
|
relative_number = true,
|
||||||
shell = 'bash',
|
shell = 'bash',
|
||||||
|
timeoutlen = 100,
|
||||||
|
|
||||||
-- @usage pass a table with your desired languages
|
-- @usage pass a table with your desired languages
|
||||||
treesitter = {
|
treesitter = {
|
||||||
|
|
|
@ -32,7 +32,7 @@ vim.o.backup = false -- This is recommended by coc
|
||||||
vim.o.writebackup = false -- This is recommended by coc
|
vim.o.writebackup = false -- This is recommended by coc
|
||||||
vim.wo.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time
|
vim.wo.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time
|
||||||
vim.o.updatetime = 300 -- Faster completion
|
vim.o.updatetime = 300 -- Faster completion
|
||||||
vim.o.timeoutlen = 500 -- By default timeoutlen is 1000 ms
|
vim.o.timeoutlen = O.timeoutlen -- By default timeoutlen is 1000 ms
|
||||||
vim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything else
|
vim.o.clipboard = "unnamedplus" -- Copy paste between vim and everything else
|
||||||
-- vim.o.guifont = "JetBrainsMono\\ Nerd\\ Font\\ Mono:h18"
|
-- vim.o.guifont = "JetBrainsMono\\ Nerd\\ Font\\ Mono:h18"
|
||||||
-- vim.o.guifont = "Hack\\ Nerd\\ Font\\ Mono"
|
-- vim.o.guifont = "Hack\\ Nerd\\ Font\\ Mono"
|
||||||
|
|
|
@ -12,6 +12,7 @@ O.auto_complete = true
|
||||||
O.colorscheme = 'lunar'
|
O.colorscheme = 'lunar'
|
||||||
O.auto_close_tree = 0
|
O.auto_close_tree = 0
|
||||||
O.wrap_lines = false
|
O.wrap_lines = false
|
||||||
|
O.timeoutlen = 100
|
||||||
|
|
||||||
-- dashboard
|
-- dashboard
|
||||||
-- O.dashboard.custom_header = {""}
|
-- O.dashboard.custom_header = {""}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue