mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-05 00:41:44 +05:30
- IdeaVIM: List all JB and IdeaVIM shortcut mappings explicitly - IdeaVIM: More plugins - IdeaVIM: Plugins reconfigured to be as similiar to NeoVIM as possible - IdeaVIM: Keymapping updated to be as similar to NeoVIM as possible - JetBrains: Added JB keymap copies to repo - VIM: Plugin specific keymaps moved to plugin_config.vim - VIM: New plugins: vim-exchange, quickscope, vim-visual-multi
23 lines
1017 B
VimL
23 lines
1017 B
VimL
" NERDTree Plugin configurations
|
|
let g:NERDTreeShowHidden = 1
|
|
let g:NERDTreeWinSize = 25
|
|
|
|
" Map easymotion Plugin to <Leader>j
|
|
nnoremap <leader>j <Plug>(easymotion-s)
|
|
|
|
" Show the undo tree
|
|
nnoremap <leader>u :UndotreeToggle<CR>
|
|
|
|
" Fugitive
|
|
nnoremap <leader>gg :0G<cr>
|
|
|
|
" Quickscope
|
|
" Trigger a highlight in the appropriate direction when pressing these keys:
|
|
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
|
|
let g:qs_accepted_chars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
|
|
|
|
" Quickscope in VSCode
|
|
" https://github.com/vscode-neovim/vscode-neovim/wiki/Plugins#quick-scope
|
|
highlight QuickScopePrimary guifg='#afff5f' gui=underline ctermfg=155 cterm=underline
|
|
highlight QuickScopeSecondary guifg='#5fffff' gui=underline ctermfg=81 cterm=underline
|