We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 944224a commit 3a2df17Copy full SHA for 3a2df17
init.lua
@@ -25,9 +25,12 @@ vim.opt.mouse = 'a'
25
vim.opt.showmode = false
26
27
-- Sync clipboard between OS and Neovim.
28
+-- Schedule the setting after `UiEnter` because it can increase startup-time.
29
-- Remove this option if you want your OS clipboard to remain independent.
30
-- See `:help 'clipboard'`
-vim.opt.clipboard = 'unnamedplus'
31
+vim.schedule(function()
32
+ vim.opt.clipboard = 'unnamedplus'
33
+end)
34
35
-- Enable break indent
36
vim.opt.breakindent = true
0 commit comments