performance: defer clipboard because xsel and pbcopy can be slow (#1049)
This commit is contained in:
		
							parent
							
								
									fd66454c4a
								
							
						
					
					
						commit
						84cc12354d
					
				
							
								
								
									
										3
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										3
									
								
								init.lua
								
								
								
								
							|  | @ -111,9 +111,12 @@ vim.opt.mouse = 'a' | ||||||
| vim.opt.showmode = false | vim.opt.showmode = false | ||||||
| 
 | 
 | ||||||
| -- Sync clipboard between OS and Neovim. | -- Sync clipboard between OS and Neovim. | ||||||
|  | --  Schedule the setting after `UiEnter` because it can increase startup-time. | ||||||
| --  Remove this option if you want your OS clipboard to remain independent. | --  Remove this option if you want your OS clipboard to remain independent. | ||||||
| --  See `:help 'clipboard'` | --  See `:help 'clipboard'` | ||||||
|  | vim.schedule(function() | ||||||
|   vim.opt.clipboard = 'unnamedplus' |   vim.opt.clipboard = 'unnamedplus' | ||||||
|  | end) | ||||||
| 
 | 
 | ||||||
| -- Enable break indent | -- Enable break indent | ||||||
| vim.opt.breakindent = true | vim.opt.breakindent = true | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 abeldekat
						abeldekat