diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-25 04:00:24 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-25 04:00:24 +0100 |
commit | 0198925f58c028a503c76c59eaee5f4c380af1b3 (patch) | |
tree | e99c471046a5391c837a755d12fb3a40115479dd /.config/nvim/plugins.vim | |
parent | Learned a new trick today woo (diff) | |
download | dotfiles-bsd-0198925f58c028a503c76c59eaee5f4c380af1b3.tar.gz dotfiles-bsd-0198925f58c028a503c76c59eaee5f4c380af1b3.tar.bz2 dotfiles-bsd-0198925f58c028a503c76c59eaee5f4c380af1b3.tar.xz dotfiles-bsd-0198925f58c028a503c76c59eaee5f4c380af1b3.tar.zst dotfiles-bsd-0198925f58c028a503c76c59eaee5f4c380af1b3.zip |
Added new plugin for vim
Diffstat (limited to '')
-rw-r--r-- | .config/nvim/plugins.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/nvim/plugins.vim b/.config/nvim/plugins.vim index 1db6e63..5b5cb47 100644 --- a/.config/nvim/plugins.vim +++ b/.config/nvim/plugins.vim @@ -76,3 +76,11 @@ let g:floaterm_width = 0.85 let g:floaterm_height = 0.75 let g:floaterm_wintitle = 0 let g:floaterm_autoclose = 1 + +" Quickscope +let g:qs_highlight_on_keys = ['f', 'F', 't', 'T'] + +highlight QuickScopePrimary guifg='#00C7DF' gui=underline ctermfg=155 cterm=underline +highlight QuickScopeSecondary guifg='#afff5f' gui=underline ctermfg=81 cterm=underline + +let g:qs_max_chars=150 |