Archived
0
0
Fork 0

made neovim startup 50% faster on wsl

This commit is contained in:
Daryl Ronningen 2022-07-23 22:05:29 -05:00
parent a95d9001b2
commit 4a6cd1ff5f
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B

View file

@ -45,3 +45,7 @@ vim.opt.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]]
vim.cmd("set whichwrap+=<,>,[,],h,l")
vim.cmd([[set iskeyword+=-]])
vim.cmd([[set formatoptions-=cro]])
vim.cmd(
"let g:clipboard = { 'copy': { '+': 'xsel', '*': 'xsel' }, 'paste': { '+': 'xsel', '*': 'xsel' }, 'cache_enabled': 0 }"
)