1
1
Fork 0

toggle alternative

This commit is contained in:
Ava Gaiety Wroten 2021-04-11 22:09:28 -05:00
parent d081a53c58
commit b3c9f3be22
3 changed files with 5 additions and 1 deletions

View file

@ -24,6 +24,7 @@
* `<Leader>k {or j}` Move **current** line up/down
* **Insert Mode** `Tab` Autocomplete
* `<Leader>ta` Toggle Alternative (false/true)
### Browsing Files

View file

@ -29,4 +29,5 @@ nnoremap <leader>fgc <cmd>Telescope git_commits<cr>
nnoremap <leader>fgt <cmd>Telescope tags<cr>
" fern
nnoremap <Leader>` :Fern . -reveal=%<CR>
" toggle alternative
nnoremap <Leader>ta :ToggleAlternate<CR>

View file

@ -46,6 +46,8 @@ call plug#begin('~/.config/nvim/autoload/plugged')
Plug 'ludovicchabant/vim-gutentags'
endif
Plug 'rmagatti/alternate-toggler'
Plug 'pangloss/vim-javascript'
Plug 'vim-ruby/vim-ruby'
call plug#end()