Mercurial > dotfiles
comparison .chezmoitemplates/init.lua @ 592:84209805e28f
remove quick-scope plugin: slows scrolling too much
author | Zeger Van de Vannet <zegervdv@me.com> |
---|---|
date | Mon, 02 May 2022 16:16:19 +0200 |
parents | 6bb59cb7cdd4 |
children | ece4809c1313 |
comparison
equal
deleted
inserted
replaced
591:4d91cd643eb8 | 592:84209805e28f |
---|---|
132 }, | 132 }, |
133 } | 133 } |
134 | 134 |
135 -- Undoing | 135 -- Undoing |
136 use { 'sjl/gundo.vim', cmd = { 'GundoToggle' } } | 136 use { 'sjl/gundo.vim', cmd = { 'GundoToggle' } } |
137 | |
138 -- F/T navigation | |
139 use { | |
140 'unblevable/quick-scope', | |
141 config = function() | |
142 vim.g.qs_hightlight_on_keys = { 'f', 'F', 't', 'T' } | |
143 vim.g.qs_buftype_blacklist = { 'terminal', 'nofile', 'help' } | |
144 vim.cmd [[ highlight QuickScopePrimary gui=underline cterm=underline ]] | |
145 end, | |
146 } | |
147 | 137 |
148 -- Parentheses etc | 138 -- Parentheses etc |
149 use { 'tpope/vim-surround' } | 139 use { 'tpope/vim-surround' } |
150 use { | 140 use { |
151 'windwp/nvim-autopairs', | 141 'windwp/nvim-autopairs', |