| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 | " Leader Key Maps" Timeoutlet g:which_key_timeout = 100let g:which_key_display_names = {'<CR>': '↵', '<TAB>': '⇆'}" Map leader to which_keynnoremap <silent> <leader> :silent <c-u> :silent WhichKey '<Space>'<CR>vnoremap <silent> <leader> :silent <c-u> :silent WhichKeyVisual '<Space>'<CR>let g:which_key_map =  {}let g:which_key_sep = '→'" Not a fan of floating windows for thislet g:which_key_use_floating_win = 0let g:which_key_max_size = 0" Hide status lineautocmd! FileType which_keyautocmd  FileType which_key set laststatus=0 noshowmode noruler  \| autocmd BufLeave <buffer> set laststatus=2 noshowmode ruler" " delete without yanking" nnoremap <leader>d "_d" vnoremap <leader>d "_d" " " replace currently selected text with default register" " without yanking it" vnoremap <leader>p "_dP" vnoremap <leader>p "_dPmap <leader>p <Plug>(miniyank-startput)map <leader>P <Plug>(miniyank-startPut)" Single mappingslet g:which_key_map['/'] = 'which_key_ignore'let g:which_key_map['p'] = 'which_key_ignore'let g:which_key_map['P'] = 'which_key_ignore'let g:which_key_map['n'] = 'which_key_ignore'let g:which_key_map['N'] = 'which_key_ignore'let g:which_key_map['"'] = [ '<Plug>PeekupOpen'                                , 'registers' ]let g:which_key_map['?'] = [ ':NvimTreeFindFile'                               , 'find current file' ]let g:which_key_map['e'] = [ ':NvimTreeToggle'                                 , 'explorer' ]let g:which_key_map['f'] = [ ':Telescope find_files'                           , 'find files' ]let g:which_key_map['h'] = [ '<C-W>s'                                          , 'split below']let g:which_key_map['m'] = [ ':MarkdownPreviewToggle'                          , 'markdown preview']let g:which_key_map['h'] = [ ':let @/ = ""'                                    , 'no highlight' ]let g:which_key_map['r'] = [ ':RnvimrToggle'                                   , 'ranger' ]" let g:which_key_map['p'] = [ '"0p'                                             , 'paste' ]" TODO create entire treesitter sectionlet g:which_key_map['T'] = [ ':TSHighlightCapturesUnderCursor'                 , 'treesitter highlight' ]let g:which_key_map['v'] = [ '<C-W>v'                                          , 'split right']" Add Zen mode, play nice with status linelet g:which_key_map['z'] = [ 'Goyo'                                            , 'zen' ]" Group mappings" a is for actionslet g:which_key_map.a = {      \ 'name' : '+actions' ,      \ 'c' : [':ColorizerToggle'        , 'colorizer'],      \ 'h' : [':let @/ = ""'            , 'remove search highlight'],      \ 'l' : [':Bracey'                 , 'start live server'],      \ 'L' : [':BraceyStop'             , 'stop live server'],      \ 'n' : [':set nonumber!'          , 'line-numbers'],      \ 's' : [':s/\%V\(.*\)\%V/"\1"/'   , 'surround'],      \ 'r' : [':set norelativenumber!'  , 'relative line nums'],      \ 'v' : [':Codi'                   , 'virtual repl on'],      \ 'V' : [':Codi!'                  , 'virtual repl off'],      \ }" b is for bufferlet g:which_key_map.b = {      \ 'name' : '+buffer' ,      \ '>' : [':BufferMoveNext'        , 'move next'],      \ '<' : [':BufferMovePrevious'    , 'move prev'],      \ 'b' : [':BufferPick'            , 'pick buffer'],      \ 'd' : [':Bdelete'               , 'delete-buffer'],      \ 'n' : ['bnext'                  , 'next-buffer'],      \ 'p' : ['bprevious'              , 'previous-buffer'],      \ '?' : ['Buffers'                , 'fzf-buffer'],      \ }" F is for foldlet g:which_key_map.F = {    \ 'name': '+fold',    \ 'O' : [':set foldlevel=20', 'open all'],    \ 'C' : [':set foldlevel=0', 'close all'],    \ 'c' : [':foldclose', 'close'],    \ 'o' : [':foldopen', 'open'],    \ '1' : [':set foldlevel=1', 'level1'],    \ '2' : [':set foldlevel=2', 'level2'],    \ '3' : [':set foldlevel=3', 'level3'],    \ '4' : [':set foldlevel=4', 'level4'],    \ '5' : [':set foldlevel=5', 'level5'],    \ '6' : [':set foldlevel=6', 'level6']    \ }" s is for search powered by telescopelet g:which_key_map.s = {      \ 'name' : '+search' ,      \ '.' : [':Telescope filetypes'                   , 'filetypes'],      \ 'B' : [':Telescope git_branches'                , 'git branches'],      \ 'd' : [':Telescope lsp_document_diagnostics'    , 'document_diagnostics'],      \ 'D' : [':Telescope lsp_workspace_diagnostics'   , 'workspace_diagnostics'],      \ 'f' : [':Telescope find_files'                  , 'files'],      \ 'h' : [':Telescope command_history'             , 'history'],      \ 'i' : [':Telescope media_files'                 , 'media files'],      \ 'm' : [':Telescope marks'                       , 'marks'],      \ 'M' : [':Telescope man_pages'                   , 'man_pages'],      \ 'o' : [':Telescope vim_options'                 , 'vim_options'],      \ 't' : [':Telescope live_grep'                   , 'text'],      \ 'r' : [':Telescope registers'                   , 'registers'],      \ 'w' : [':Telescope file_browser'                , 'buf_fuz_find'],      \ 'u' : [':Telescope colorscheme'                 , 'colorschemes'],      \ }      " \ 'A' : [':Telescope builtin'                     , 'all'],      " \ 's' : [':Telescope git_status'                  , 'git_status'],      " \ 'b' : [':Telescope buffers'                     , 'buffers'],      " \ ';' : [':Telescope commands'                    , 'commands'],      " \ 'a' : [':Telescope lsp_code_actions'            , 'code_actions'],      " \ 'c' : [':Telescope git_commits'                 , 'git_commits'],      " \ 'C' : [':Telescope git_bcommits'                , 'git_bcommits'],      " \ 'g' : [':Telescope tags'                        , 'tags'],      " \ 'F' : [':Telescope git_files'                   , 'git_files'],      " \ 'G' : [':Telescope current_buffer_tags'         , 'buffer_tags'],      " \ 'k' : [':Telescope keymaps'                     , 'keymaps'],      " \ 'H' : [':Telescope help_tags'                   , 'help_tags'],      " \ 'l' : [':Telescope loclist'                     , 'loclist'],      " \ 'O' : [':Telescope oldfiles'                    , 'oldfiles'],      " \ 'p' : [':Telescope fd'                          , 'fd'],      " \ 'S' : [':Telescope grep_string'                 , 'grep_string'],      " \ 'y' : [':Telescope symbols'                     , 'symbols'],      " \ 'Y' : [':Telescope lsp_workspace_symbols'       , 'lsp_workspace_symbols'],      " \ 'R' : [':Telescope reloader'                    , 'reloader'],      " \ 'z' : [':Telescope current_buffer_fuzzy_find'   , 'buf_fuz_find'],      " \ 'P' : [':Telescope spell_suggest'               , 'spell_suggest'],let g:which_key_map.S = {      \ 'name' : '+Session' ,      \ 'c' : [':SClose'          , 'Close Session']  ,      \ 'd' : [':SDelete'         , 'Delete Session'] ,      \ 'l' : [':SLoad'           , 'Load Session']     ,      \ 's' : [':Startify'        , 'Start Page']     ,      \ 'S' : [':SSave'           , 'Save Session']   ,      \ }" g is for gitlet g:which_key_map.g = {      \ 'name' : '+git' ,      \ 'b' : [':GitBlameToggle'                   , 'blame'],      \ 'B' : [':GBrowse'                          , 'browse'],      \ 'd' : [':Git diff'                         , 'diff'],      \ 'j' : [':NextHunk'                         , 'next hunk'],      \ 'k' : [':PrevHunk'                         , 'prev hunk'],      \ 'l' : [':Git log'                          , 'log'],      \ 'n' : [':Neogit'                           , 'neogit'],      \ 'p' : [':PreviewHunk'                      , 'preview hunk'],      \ 'r' : [':ResetHunk'                        , 'reset hunk'],      \ 'R' : [':ResetBuffer'                      , 'reset buffer'],      \ 's' : [':StageHunk'                        , 'stage hunk'],      \ 'S' : [':Gstatus'                          , 'status'],      \ 'u' : [':UndoStageHunk'                    , 'undo stage hunk'],      \ }" G is for gistlet g:which_key_map.G = {      \ 'name' : '+gist' ,      \ 'b' : [':Gist -b'                          , 'post gist browser'],      \ 'd' : [':Gist -d'                          , 'delete gist'],      \ 'e' : [':Gist -e'                          , 'edit gist'],      \ 'l' : [':Gist -l'                          , 'list public gists'],      \ 's' : [':Gist -ls'                         , 'list starred gists'],      \ 'm' : [':Gist -m'                          , 'post gist all buffers'],      \ 'p' : [':Gist -P'                          , 'post public gist '],      \ 'P' : [':Gist -p'                          , 'post private gist '],      \ }      " \ 'a' : [':Gist -a'                          , 'post gist anon']," l is for language server protocollet g:which_key_map.l = {      \ 'name' : '+lsp' ,      \ 'a' : [':Lspsaga code_action'                , 'code action'],      \ 'A' : [':Lspsaga range_code_action'          , 'selected action'],      \ 'd' : [':Telescope lsp_document_diagnostics' , 'document diagnostics'],      \ 'D' : [':Telescope lsp_workspace_diagnostics', 'workspace diagnostics'],      \ 'f' : [':LspFormatting'                      , 'format'],      \ 'I' : [':LspInfo'                            , 'lsp info'],      \ 'v' : [':LspVirtualTextToggle'               , 'lsp toggle virtual text'],      \ 'l' : [':Lspsaga lsp_finder'                 , 'lsp finder'],      \ 'L' : [':Lspsaga show_line_diagnostics'      , 'line_diagnostics'],      \ 'o' : [':Vista!!'                            , 'outline'],      \ 'p' : [':Lspsaga preview_definition'         , 'preview definition'],      \ 'q' : [':Telescope quickfix'                 , 'quickfix'],      \ 'r' : [':Lspsaga rename'                          , 'rename'],      \ 'T' : [':LspTypeDefinition'                  , 'type defintion'],      \ 'x' : [':cclose'                             , 'close quickfix'],      \ 's' : [':Telescope lsp_document_symbols'     , 'document symbols'],      \ 'S' : [':Telescope lsp_workspace_symbols'    , 'workspace symbols'],      \ }      " \ 'H' : [':Lspsaga signature_help'             , 'signature_help']," t is for terminallet g:which_key_map.t = {      \ 'name' : '+terminal' ,      \ ';' : [':FloatermNew --wintype=normal --height=6'       , 'terminal'],      \ 'f' : [':FloatermNew fzf'                               , 'fzf'],      \ 'g' : [':FloatermNew lazygit'                           , 'git'],      \ 'd' : [':FloatermNew lazydocker'                        , 'docker'],      \ 'n' : [':FloatermNew node'                              , 'node'],      \ 'N' : [':FloatermNew nnn'                               , 'nnn'],      \ 'p' : [':FloatermNew python'                            , 'python'],      \ 'm' : [':FloatermNew lazynpm'                           , 'npm'],      \ 't' : [':FloatermToggle'                                , 'toggle'],      \ 'y' : [':FloatermNew ytop'                              , 'ytop'],      \ 'u' : [':FloatermNew ncdu'                              , 'ncdu'],      \ }      " \ 'r' : [':FloatermNew ranger'                            , 'ranger'],let g:which_key_map.R = {      \ 'name' : '+Find_Replace' ,      \ 'f' : [':Farr --source=vimgrep'    , 'file'],      \ 'p' : [':Farr --source=rgnvim'     , 'project'],      \ }call which_key#register('<Space>', "g:which_key_map")
 |