diff options
author | Chris <[email protected]> | 2021-03-14 20:34:23 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-14 20:34:23 -0400 |
commit | 413acae7a067e5e7c4c66961cb84a5316264416d (patch) | |
tree | 2fd71cb9dc05d8d4484b7f4fa0cf7ab984079248 /lua/nv-quickscope/init.lua | |
parent | fe96bf5df72f5429caed19e06076d308e04c7d38 (diff) |
updates
Diffstat (limited to 'lua/nv-quickscope/init.lua')
-rw-r--r-- | lua/nv-quickscope/init.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/nv-quickscope/init.lua b/lua/nv-quickscope/init.lua new file mode 100644 index 00000000..4c706698 --- /dev/null +++ b/lua/nv-quickscope/init.lua @@ -0,0 +1,7 @@ +-- Trigger a highlight in the appropriate direction when pressing these keys: +-- vim.cmd('let g:qs_highlight_on_keys = [\'f\', \'F\', \'t\', \'T\']') +vim.g.qs_highlight_on_keys = {'f', 'F', 't', 'T'} + +vim.api.nvim_exec('highlight QuickScopePrimary guifg=\'#00C7DF\' gui=underline ctermfg=155 cterm=underline', false) +vim.cmd('highlight QuickScopeSecondary guifg=\'#eF5F70\' gui=underline ctermfg=81 cterm=underline') +vim.g.qs_max_chars=150 |